com.azure.storage.blob.implementation.BlobsImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-storage-blob Show documentation
Show all versions of azure-storage-blob Show documentation
This module contains client library for Microsoft Azure Blob Storage.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.storage.blob.implementation;
import com.azure.core.annotation.BodyParam;
import com.azure.core.annotation.Delete;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.Get;
import com.azure.core.annotation.Head;
import com.azure.core.annotation.HeaderParam;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.PathParam;
import com.azure.core.annotation.Post;
import com.azure.core.annotation.Put;
import com.azure.core.annotation.QueryParam;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceInterface;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.annotation.UnexpectedResponseExceptionType;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.ResponseBase;
import com.azure.core.http.rest.RestProxy;
import com.azure.core.http.rest.StreamResponse;
import com.azure.core.util.Base64Util;
import com.azure.core.util.Context;
import com.azure.core.util.DateTimeRfc1123;
import com.azure.core.util.FluxUtil;
import com.azure.storage.blob.implementation.models.BlobDeleteType;
import com.azure.storage.blob.implementation.models.BlobExpiryOptions;
import com.azure.storage.blob.implementation.models.BlobTags;
import com.azure.storage.blob.implementation.models.BlobsAbortCopyFromURLHeaders;
import com.azure.storage.blob.implementation.models.BlobsAcquireLeaseHeaders;
import com.azure.storage.blob.implementation.models.BlobsBreakLeaseHeaders;
import com.azure.storage.blob.implementation.models.BlobsChangeLeaseHeaders;
import com.azure.storage.blob.implementation.models.BlobsCopyFromURLHeaders;
import com.azure.storage.blob.implementation.models.BlobsCreateSnapshotHeaders;
import com.azure.storage.blob.implementation.models.BlobsDeleteHeaders;
import com.azure.storage.blob.implementation.models.BlobsDeleteImmutabilityPolicyHeaders;
import com.azure.storage.blob.implementation.models.BlobsDownloadHeaders;
import com.azure.storage.blob.implementation.models.BlobsGetAccountInfoHeaders;
import com.azure.storage.blob.implementation.models.BlobsGetPropertiesHeaders;
import com.azure.storage.blob.implementation.models.BlobsGetTagsHeaders;
import com.azure.storage.blob.implementation.models.BlobsQueryHeaders;
import com.azure.storage.blob.implementation.models.BlobsReleaseLeaseHeaders;
import com.azure.storage.blob.implementation.models.BlobsRenewLeaseHeaders;
import com.azure.storage.blob.implementation.models.BlobsSetExpiryHeaders;
import com.azure.storage.blob.implementation.models.BlobsSetHttpHeadersHeaders;
import com.azure.storage.blob.implementation.models.BlobsSetImmutabilityPolicyHeaders;
import com.azure.storage.blob.implementation.models.BlobsSetLegalHoldHeaders;
import com.azure.storage.blob.implementation.models.BlobsSetMetadataHeaders;
import com.azure.storage.blob.implementation.models.BlobsSetTagsHeaders;
import com.azure.storage.blob.implementation.models.BlobsSetTierHeaders;
import com.azure.storage.blob.implementation.models.BlobsStartCopyFromURLHeaders;
import com.azure.storage.blob.implementation.models.BlobsUndeleteHeaders;
import com.azure.storage.blob.implementation.models.EncryptionScope;
import com.azure.storage.blob.implementation.models.QueryRequest;
import com.azure.storage.blob.models.AccessTier;
import com.azure.storage.blob.models.BlobCopySourceTagsMode;
import com.azure.storage.blob.models.BlobHttpHeaders;
import com.azure.storage.blob.models.BlobImmutabilityPolicyMode;
import com.azure.storage.blob.models.BlobStorageException;
import com.azure.storage.blob.models.CpkInfo;
import com.azure.storage.blob.models.DeleteSnapshotsOptionType;
import com.azure.storage.blob.models.EncryptionAlgorithmType;
import com.azure.storage.blob.models.RehydratePriority;
import java.nio.ByteBuffer;
import java.time.OffsetDateTime;
import java.util.Map;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/** An instance of this class provides access to all the operations defined in Blobs. */
public final class BlobsImpl {
/** The proxy service used to perform REST calls. */
private final BlobsService service;
/** The service client containing this operation class. */
private final AzureBlobStorageImpl client;
/**
* Initializes an instance of BlobsImpl.
*
* @param client the instance of the service client containing this operation class.
*/
BlobsImpl(AzureBlobStorageImpl client) {
this.service = RestProxy.create(BlobsService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for AzureBlobStorageBlobs to be used by the proxy service to perform REST
* calls.
*/
@Host("{url}")
@ServiceInterface(name = "AzureBlobStorageBlob")
public interface BlobsService {
@Get("/{containerName}/{blob}")
@ExpectedResponses({200, 206})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono>> download(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("snapshot") String snapshot,
@QueryParam("versionid") String versionId,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-range") String range,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-range-get-content-md5") Boolean rangeGetContentMD5,
@HeaderParam("x-ms-range-get-content-crc64") Boolean rangeGetContentCRC64,
@HeaderParam("x-ms-encryption-key") String encryptionKey,
@HeaderParam("x-ms-encryption-key-sha256") String encryptionKeySha256,
@HeaderParam("x-ms-encryption-algorithm") EncryptionAlgorithmType encryptionAlgorithm,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Get("/{containerName}/{blob}")
@ExpectedResponses({200, 206})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono downloadNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("snapshot") String snapshot,
@QueryParam("versionid") String versionId,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-range") String range,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-range-get-content-md5") Boolean rangeGetContentMD5,
@HeaderParam("x-ms-range-get-content-crc64") Boolean rangeGetContentCRC64,
@HeaderParam("x-ms-encryption-key") String encryptionKey,
@HeaderParam("x-ms-encryption-key-sha256") String encryptionKeySha256,
@HeaderParam("x-ms-encryption-algorithm") EncryptionAlgorithmType encryptionAlgorithm,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Head("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> getProperties(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("snapshot") String snapshot,
@QueryParam("versionid") String versionId,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-encryption-key") String encryptionKey,
@HeaderParam("x-ms-encryption-key-sha256") String encryptionKeySha256,
@HeaderParam("x-ms-encryption-algorithm") EncryptionAlgorithmType encryptionAlgorithm,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Head("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> getPropertiesNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("snapshot") String snapshot,
@QueryParam("versionid") String versionId,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-encryption-key") String encryptionKey,
@HeaderParam("x-ms-encryption-key-sha256") String encryptionKeySha256,
@HeaderParam("x-ms-encryption-algorithm") EncryptionAlgorithmType encryptionAlgorithm,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Delete("/{containerName}/{blob}")
@ExpectedResponses({202})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> delete(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("snapshot") String snapshot,
@QueryParam("versionid") String versionId,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-delete-snapshots") DeleteSnapshotsOptionType deleteSnapshots,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@QueryParam("deletetype") BlobDeleteType blobDeleteType,
@HeaderParam("Accept") String accept,
Context context);
@Delete("/{containerName}/{blob}")
@ExpectedResponses({202})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> deleteNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("snapshot") String snapshot,
@QueryParam("versionid") String versionId,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-delete-snapshots") DeleteSnapshotsOptionType deleteSnapshots,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@QueryParam("deletetype") BlobDeleteType blobDeleteType,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> undelete(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> undeleteNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setExpiry(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("x-ms-expiry-option") BlobExpiryOptions expiryOptions,
@HeaderParam("x-ms-expiry-time") String expiresOn,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setExpiryNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("x-ms-expiry-option") BlobExpiryOptions expiryOptions,
@HeaderParam("x-ms-expiry-time") String expiresOn,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setHttpHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-blob-cache-control") String cacheControl,
@HeaderParam("x-ms-blob-content-type") String contentType,
@HeaderParam("x-ms-blob-content-md5") String contentMd5,
@HeaderParam("x-ms-blob-content-encoding") String contentEncoding,
@HeaderParam("x-ms-blob-content-language") String contentLanguage,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-blob-content-disposition") String contentDisposition,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setHttpHeadersNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-blob-cache-control") String cacheControl,
@HeaderParam("x-ms-blob-content-type") String contentType,
@HeaderParam("x-ms-blob-content-md5") String contentMd5,
@HeaderParam("x-ms-blob-content-encoding") String contentEncoding,
@HeaderParam("x-ms-blob-content-language") String contentLanguage,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-blob-content-disposition") String contentDisposition,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setImmutabilityPolicy(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("x-ms-immutability-policy-until-date") DateTimeRfc1123 immutabilityPolicyExpiry,
@HeaderParam("x-ms-immutability-policy-mode") BlobImmutabilityPolicyMode immutabilityPolicyMode,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setImmutabilityPolicyNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("x-ms-immutability-policy-until-date") DateTimeRfc1123 immutabilityPolicyExpiry,
@HeaderParam("x-ms-immutability-policy-mode") BlobImmutabilityPolicyMode immutabilityPolicyMode,
@HeaderParam("Accept") String accept,
Context context);
@Delete("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> deleteImmutabilityPolicy(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Delete("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> deleteImmutabilityPolicyNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setLegalHold(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("x-ms-legal-hold") boolean legalHold,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setLegalHoldNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("x-ms-legal-hold") boolean legalHold,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setMetadata(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-meta-") Map metadata,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-encryption-key") String encryptionKey,
@HeaderParam("x-ms-encryption-key-sha256") String encryptionKeySha256,
@HeaderParam("x-ms-encryption-algorithm") EncryptionAlgorithmType encryptionAlgorithm,
@HeaderParam("x-ms-encryption-scope") String encryptionScope,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setMetadataNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-meta-") Map metadata,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-encryption-key") String encryptionKey,
@HeaderParam("x-ms-encryption-key-sha256") String encryptionKeySha256,
@HeaderParam("x-ms-encryption-algorithm") EncryptionAlgorithmType encryptionAlgorithm,
@HeaderParam("x-ms-encryption-scope") String encryptionScope,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({201})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> acquireLease(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-lease-action") String action,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-duration") Integer duration,
@HeaderParam("x-ms-proposed-lease-id") String proposedLeaseId,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({201})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> acquireLeaseNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-lease-action") String action,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-duration") Integer duration,
@HeaderParam("x-ms-proposed-lease-id") String proposedLeaseId,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> releaseLease(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-lease-action") String action,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> releaseLeaseNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-lease-action") String action,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> renewLease(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-lease-action") String action,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> renewLeaseNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-lease-action") String action,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> changeLease(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-lease-action") String action,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-proposed-lease-id") String proposedLeaseId,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> changeLeaseNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-lease-action") String action,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-proposed-lease-id") String proposedLeaseId,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({202})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> breakLease(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-lease-action") String action,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-break-period") Integer breakPeriod,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({202})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> breakLeaseNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-lease-action") String action,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-break-period") Integer breakPeriod,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({201})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> createSnapshot(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-meta-") Map metadata,
@HeaderParam("x-ms-encryption-key") String encryptionKey,
@HeaderParam("x-ms-encryption-key-sha256") String encryptionKeySha256,
@HeaderParam("x-ms-encryption-algorithm") EncryptionAlgorithmType encryptionAlgorithm,
@HeaderParam("x-ms-encryption-scope") String encryptionScope,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({201})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> createSnapshotNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-meta-") Map metadata,
@HeaderParam("x-ms-encryption-key") String encryptionKey,
@HeaderParam("x-ms-encryption-key-sha256") String encryptionKeySha256,
@HeaderParam("x-ms-encryption-algorithm") EncryptionAlgorithmType encryptionAlgorithm,
@HeaderParam("x-ms-encryption-scope") String encryptionScope,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({202})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> startCopyFromURL(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-meta-") Map metadata,
@HeaderParam("x-ms-access-tier") AccessTier tier,
@HeaderParam("x-ms-rehydrate-priority") RehydratePriority rehydratePriority,
@HeaderParam("x-ms-source-if-modified-since") DateTimeRfc1123 sourceIfModifiedSince,
@HeaderParam("x-ms-source-if-unmodified-since") DateTimeRfc1123 sourceIfUnmodifiedSince,
@HeaderParam("x-ms-source-if-match") String sourceIfMatch,
@HeaderParam("x-ms-source-if-none-match") String sourceIfNoneMatch,
@HeaderParam("x-ms-source-if-tags") String sourceIfTags,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-copy-source") String copySource,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("x-ms-tags") String blobTagsString,
@HeaderParam("x-ms-seal-blob") Boolean sealBlob,
@HeaderParam("x-ms-immutability-policy-until-date") DateTimeRfc1123 immutabilityPolicyExpiry,
@HeaderParam("x-ms-immutability-policy-mode") BlobImmutabilityPolicyMode immutabilityPolicyMode,
@HeaderParam("x-ms-legal-hold") Boolean legalHold,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({202})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> startCopyFromURLNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-meta-") Map metadata,
@HeaderParam("x-ms-access-tier") AccessTier tier,
@HeaderParam("x-ms-rehydrate-priority") RehydratePriority rehydratePriority,
@HeaderParam("x-ms-source-if-modified-since") DateTimeRfc1123 sourceIfModifiedSince,
@HeaderParam("x-ms-source-if-unmodified-since") DateTimeRfc1123 sourceIfUnmodifiedSince,
@HeaderParam("x-ms-source-if-match") String sourceIfMatch,
@HeaderParam("x-ms-source-if-none-match") String sourceIfNoneMatch,
@HeaderParam("x-ms-source-if-tags") String sourceIfTags,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-copy-source") String copySource,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("x-ms-tags") String blobTagsString,
@HeaderParam("x-ms-seal-blob") Boolean sealBlob,
@HeaderParam("x-ms-immutability-policy-until-date") DateTimeRfc1123 immutabilityPolicyExpiry,
@HeaderParam("x-ms-immutability-policy-mode") BlobImmutabilityPolicyMode immutabilityPolicyMode,
@HeaderParam("x-ms-legal-hold") Boolean legalHold,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({202})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> copyFromURL(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@HeaderParam("x-ms-requires-sync") String xMsRequiresSync,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-meta-") Map metadata,
@HeaderParam("x-ms-access-tier") AccessTier tier,
@HeaderParam("x-ms-source-if-modified-since") DateTimeRfc1123 sourceIfModifiedSince,
@HeaderParam("x-ms-source-if-unmodified-since") DateTimeRfc1123 sourceIfUnmodifiedSince,
@HeaderParam("x-ms-source-if-match") String sourceIfMatch,
@HeaderParam("x-ms-source-if-none-match") String sourceIfNoneMatch,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-copy-source") String copySource,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("x-ms-source-content-md5") String sourceContentMD5,
@HeaderParam("x-ms-tags") String blobTagsString,
@HeaderParam("x-ms-immutability-policy-until-date") DateTimeRfc1123 immutabilityPolicyExpiry,
@HeaderParam("x-ms-immutability-policy-mode") BlobImmutabilityPolicyMode immutabilityPolicyMode,
@HeaderParam("x-ms-legal-hold") Boolean legalHold,
@HeaderParam("x-ms-copy-source-authorization") String copySourceAuthorization,
@HeaderParam("x-ms-encryption-scope") String encryptionScope,
@HeaderParam("x-ms-copy-source-tag-option") BlobCopySourceTagsMode copySourceTags,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({202})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> copyFromURLNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@HeaderParam("x-ms-requires-sync") String xMsRequiresSync,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-meta-") Map metadata,
@HeaderParam("x-ms-access-tier") AccessTier tier,
@HeaderParam("x-ms-source-if-modified-since") DateTimeRfc1123 sourceIfModifiedSince,
@HeaderParam("x-ms-source-if-unmodified-since") DateTimeRfc1123 sourceIfUnmodifiedSince,
@HeaderParam("x-ms-source-if-match") String sourceIfMatch,
@HeaderParam("x-ms-source-if-none-match") String sourceIfNoneMatch,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-copy-source") String copySource,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("x-ms-source-content-md5") String sourceContentMD5,
@HeaderParam("x-ms-tags") String blobTagsString,
@HeaderParam("x-ms-immutability-policy-until-date") DateTimeRfc1123 immutabilityPolicyExpiry,
@HeaderParam("x-ms-immutability-policy-mode") BlobImmutabilityPolicyMode immutabilityPolicyMode,
@HeaderParam("x-ms-legal-hold") Boolean legalHold,
@HeaderParam("x-ms-copy-source-authorization") String copySourceAuthorization,
@HeaderParam("x-ms-encryption-scope") String encryptionScope,
@HeaderParam("x-ms-copy-source-tag-option") BlobCopySourceTagsMode copySourceTags,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({204})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> abortCopyFromURL(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-copy-action") String copyActionAbortConstant,
@QueryParam("copyid") String copyId,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({204})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> abortCopyFromURLNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-copy-action") String copyActionAbortConstant,
@QueryParam("copyid") String copyId,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200, 202})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setTier(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("snapshot") String snapshot,
@QueryParam("versionid") String versionId,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-access-tier") AccessTier tier,
@HeaderParam("x-ms-rehydrate-priority") RehydratePriority rehydratePriority,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({200, 202})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setTierNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("snapshot") String snapshot,
@QueryParam("versionid") String versionId,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-access-tier") AccessTier tier,
@HeaderParam("x-ms-rehydrate-priority") RehydratePriority rehydratePriority,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("Accept") String accept,
Context context);
@Get("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> getAccountInfo(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("restype") String restype,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-version") String version,
@HeaderParam("Accept") String accept,
Context context);
@Get("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> getAccountInfoNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("restype") String restype,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-version") String version,
@HeaderParam("Accept") String accept,
Context context);
@Post("/{containerName}/{blob}")
@ExpectedResponses({200, 206})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono>> query(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("snapshot") String snapshot,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-encryption-key") String encryptionKey,
@HeaderParam("x-ms-encryption-key-sha256") String encryptionKeySha256,
@HeaderParam("x-ms-encryption-algorithm") EncryptionAlgorithmType encryptionAlgorithm,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@BodyParam("application/xml") QueryRequest queryRequest,
@HeaderParam("Accept") String accept,
Context context);
@Post("/{containerName}/{blob}")
@ExpectedResponses({200, 206})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono queryNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("snapshot") String snapshot,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("x-ms-encryption-key") String encryptionKey,
@HeaderParam("x-ms-encryption-key-sha256") String encryptionKeySha256,
@HeaderParam("x-ms-encryption-algorithm") EncryptionAlgorithmType encryptionAlgorithm,
@HeaderParam("If-Modified-Since") DateTimeRfc1123 ifModifiedSince,
@HeaderParam("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince,
@HeaderParam("If-Match") String ifMatch,
@HeaderParam("If-None-Match") String ifNoneMatch,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@BodyParam("application/xml") QueryRequest queryRequest,
@HeaderParam("Accept") String accept,
Context context);
@Get("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> getTags(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@QueryParam("snapshot") String snapshot,
@QueryParam("versionid") String versionId,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("Accept") String accept,
Context context);
@Get("/{containerName}/{blob}")
@ExpectedResponses({200})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> getTagsNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@QueryParam("timeout") Integer timeout,
@HeaderParam("x-ms-version") String version,
@HeaderParam("x-ms-client-request-id") String requestId,
@QueryParam("snapshot") String snapshot,
@QueryParam("versionid") String versionId,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-lease-id") String leaseId,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({204})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setTags(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-version") String version,
@QueryParam("timeout") Integer timeout,
@QueryParam("versionid") String versionId,
@HeaderParam("Content-MD5") String transactionalContentMD5,
@HeaderParam("x-ms-content-crc64") String transactionalContentCrc64,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-lease-id") String leaseId,
@BodyParam("application/xml") BlobTags tags,
@HeaderParam("Accept") String accept,
Context context);
@Put("/{containerName}/{blob}")
@ExpectedResponses({204})
@UnexpectedResponseExceptionType(BlobStorageException.class)
Mono> setTagsNoCustomHeaders(
@HostParam("url") String url,
@PathParam("containerName") String containerName,
@PathParam("blob") String blob,
@QueryParam("comp") String comp,
@HeaderParam("x-ms-version") String version,
@QueryParam("timeout") Integer timeout,
@QueryParam("versionid") String versionId,
@HeaderParam("Content-MD5") String transactionalContentMD5,
@HeaderParam("x-ms-content-crc64") String transactionalContentCrc64,
@HeaderParam("x-ms-client-request-id") String requestId,
@HeaderParam("x-ms-if-tags") String ifTags,
@HeaderParam("x-ms-lease-id") String leaseId,
@BodyParam("application/xml") BlobTags tags,
@HeaderParam("Accept") String accept,
Context context);
}
/**
* The Download operation reads or downloads a blob from the system, including its metadata and properties. You can
* also call Download to read a snapshot or version.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param range Return only the bytes of the blob in the specified range.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param rangeGetContentMD5 When set to true and specified together with the Range, the service returns the MD5
* hash for the range, as long as the range is less than or equal to 4 MB in size.
* @param rangeGetContentCRC64 When set to true and specified together with the Range, the service returns the CRC64
* hash for the range, as long as the range is less than or equal to 4 MB in size.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono>> downloadWithResponseAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String range,
String leaseId,
Boolean rangeGetContentMD5,
Boolean rangeGetContentCRC64,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo) {
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.download(
this.client.getUrl(),
containerName,
blob,
snapshot,
versionId,
timeout,
range,
leaseId,
rangeGetContentMD5,
rangeGetContentCRC64,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Download operation reads or downloads a blob from the system, including its metadata and properties. You can
* also call Download to read a snapshot or version.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param range Return only the bytes of the blob in the specified range.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param rangeGetContentMD5 When set to true and specified together with the Range, the service returns the MD5
* hash for the range, as long as the range is less than or equal to 4 MB in size.
* @param rangeGetContentCRC64 When set to true and specified together with the Range, the service returns the CRC64
* hash for the range, as long as the range is less than or equal to 4 MB in size.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono>> downloadWithResponseAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String range,
String leaseId,
Boolean rangeGetContentMD5,
Boolean rangeGetContentCRC64,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo,
Context context) {
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.download(
this.client.getUrl(),
containerName,
blob,
snapshot,
versionId,
timeout,
range,
leaseId,
rangeGetContentMD5,
rangeGetContentCRC64,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Download operation reads or downloads a blob from the system, including its metadata and properties. You can
* also call Download to read a snapshot or version.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param range Return only the bytes of the blob in the specified range.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param rangeGetContentMD5 When set to true and specified together with the Range, the service returns the MD5
* hash for the range, as long as the range is less than or equal to 4 MB in size.
* @param rangeGetContentCRC64 When set to true and specified together with the Range, the service returns the CRC64
* hash for the range, as long as the range is less than or equal to 4 MB in size.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Flux downloadAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String range,
String leaseId,
Boolean rangeGetContentMD5,
Boolean rangeGetContentCRC64,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo) {
return downloadWithResponseAsync(
containerName,
blob,
snapshot,
versionId,
timeout,
range,
leaseId,
rangeGetContentMD5,
rangeGetContentCRC64,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
cpkInfo)
.flatMapMany(fluxByteBufferResponse -> fluxByteBufferResponse.getValue());
}
/**
* The Download operation reads or downloads a blob from the system, including its metadata and properties. You can
* also call Download to read a snapshot or version.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param range Return only the bytes of the blob in the specified range.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param rangeGetContentMD5 When set to true and specified together with the Range, the service returns the MD5
* hash for the range, as long as the range is less than or equal to 4 MB in size.
* @param rangeGetContentCRC64 When set to true and specified together with the Range, the service returns the CRC64
* hash for the range, as long as the range is less than or equal to 4 MB in size.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Flux downloadAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String range,
String leaseId,
Boolean rangeGetContentMD5,
Boolean rangeGetContentCRC64,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo,
Context context) {
return downloadWithResponseAsync(
containerName,
blob,
snapshot,
versionId,
timeout,
range,
leaseId,
rangeGetContentMD5,
rangeGetContentCRC64,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
cpkInfo,
context)
.flatMapMany(fluxByteBufferResponse -> fluxByteBufferResponse.getValue());
}
/**
* The Download operation reads or downloads a blob from the system, including its metadata and properties. You can
* also call Download to read a snapshot or version.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param range Return only the bytes of the blob in the specified range.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param rangeGetContentMD5 When set to true and specified together with the Range, the service returns the MD5
* hash for the range, as long as the range is less than or equal to 4 MB in size.
* @param rangeGetContentCRC64 When set to true and specified together with the Range, the service returns the CRC64
* hash for the range, as long as the range is less than or equal to 4 MB in size.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono downloadNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String range,
String leaseId,
Boolean rangeGetContentMD5,
Boolean rangeGetContentCRC64,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo) {
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.downloadNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
snapshot,
versionId,
timeout,
range,
leaseId,
rangeGetContentMD5,
rangeGetContentCRC64,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Download operation reads or downloads a blob from the system, including its metadata and properties. You can
* also call Download to read a snapshot or version.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param range Return only the bytes of the blob in the specified range.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param rangeGetContentMD5 When set to true and specified together with the Range, the service returns the MD5
* hash for the range, as long as the range is less than or equal to 4 MB in size.
* @param rangeGetContentCRC64 When set to true and specified together with the Range, the service returns the CRC64
* hash for the range, as long as the range is less than or equal to 4 MB in size.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono downloadNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String range,
String leaseId,
Boolean rangeGetContentMD5,
Boolean rangeGetContentCRC64,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo,
Context context) {
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.downloadNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
snapshot,
versionId,
timeout,
range,
leaseId,
rangeGetContentMD5,
rangeGetContentCRC64,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Get Properties operation returns all user-defined metadata, standard HTTP properties, and system properties
* for the blob. It does not return the content of the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getPropertiesWithResponseAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo) {
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.getProperties(
this.client.getUrl(),
containerName,
blob,
snapshot,
versionId,
timeout,
leaseId,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Get Properties operation returns all user-defined metadata, standard HTTP properties, and system properties
* for the blob. It does not return the content of the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getPropertiesWithResponseAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo,
Context context) {
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.getProperties(
this.client.getUrl(),
containerName,
blob,
snapshot,
versionId,
timeout,
leaseId,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Get Properties operation returns all user-defined metadata, standard HTTP properties, and system properties
* for the blob. It does not return the content of the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getPropertiesAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo) {
return getPropertiesWithResponseAsync(
containerName,
blob,
snapshot,
versionId,
timeout,
leaseId,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
cpkInfo)
.flatMap(ignored -> Mono.empty());
}
/**
* The Get Properties operation returns all user-defined metadata, standard HTTP properties, and system properties
* for the blob. It does not return the content of the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getPropertiesAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo,
Context context) {
return getPropertiesWithResponseAsync(
containerName,
blob,
snapshot,
versionId,
timeout,
leaseId,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
cpkInfo,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* The Get Properties operation returns all user-defined metadata, standard HTTP properties, and system properties
* for the blob. It does not return the content of the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getPropertiesNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo) {
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.getPropertiesNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
snapshot,
versionId,
timeout,
leaseId,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Get Properties operation returns all user-defined metadata, standard HTTP properties, and system properties
* for the blob. It does not return the content of the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getPropertiesNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo,
Context context) {
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.getPropertiesNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
snapshot,
versionId,
timeout,
leaseId,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* If the storage account's soft delete feature is disabled then, when a blob is deleted, it is permanently removed
* from the storage account. If the storage account's soft delete feature is enabled, then, when a blob is deleted,
* it is marked for deletion and becomes inaccessible immediately. However, the blob service retains the blob or
* snapshot for the number of days specified by the DeleteRetentionPolicy section of [Storage service properties]
* (Set-Blob-Service-Properties.md). After the specified number of days has passed, the blob's data is permanently
* removed from the storage account. Note that you continue to be charged for the soft-deleted blob's storage until
* it is permanently removed. Use the List Blobs API and specify the "include=deleted" query parameter to discover
* which blobs and snapshots have been soft deleted. You can then use the Undelete Blob API to restore a
* soft-deleted blob. All other operations on a soft-deleted blob or snapshot causes the service to return an HTTP
* status code of 404 (ResourceNotFound). If the storage account's automatic snapshot feature is enabled, then, when
* a blob is deleted, an automatic snapshot is created. The blob becomes inaccessible immediately. All other
* operations on the blob causes the service to return an HTTP status code of 404 (ResourceNotFound). You can access
* automatic snapshot using snapshot timestamp or version id. You can restore the blob by calling Put or Copy Blob
* API with automatic snapshot as source. Deleting automatic snapshot requires shared key or special SAS/RBAC
* permissions.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param deleteSnapshots Required if the blob has associated snapshots. Specify one of the following two options:
* include: Delete the base blob and all of its snapshots. only: Delete only the blob's snapshots and not the
* blob itself.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobDeleteType Optional. Only possible value is 'permanent', which specifies to permanently delete a blob
* if blob soft delete is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> deleteWithResponseAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String leaseId,
DeleteSnapshotsOptionType deleteSnapshots,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
BlobDeleteType blobDeleteType) {
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.delete(
this.client.getUrl(),
containerName,
blob,
snapshot,
versionId,
timeout,
leaseId,
deleteSnapshots,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
blobDeleteType,
accept,
context));
}
/**
* If the storage account's soft delete feature is disabled then, when a blob is deleted, it is permanently removed
* from the storage account. If the storage account's soft delete feature is enabled, then, when a blob is deleted,
* it is marked for deletion and becomes inaccessible immediately. However, the blob service retains the blob or
* snapshot for the number of days specified by the DeleteRetentionPolicy section of [Storage service properties]
* (Set-Blob-Service-Properties.md). After the specified number of days has passed, the blob's data is permanently
* removed from the storage account. Note that you continue to be charged for the soft-deleted blob's storage until
* it is permanently removed. Use the List Blobs API and specify the "include=deleted" query parameter to discover
* which blobs and snapshots have been soft deleted. You can then use the Undelete Blob API to restore a
* soft-deleted blob. All other operations on a soft-deleted blob or snapshot causes the service to return an HTTP
* status code of 404 (ResourceNotFound). If the storage account's automatic snapshot feature is enabled, then, when
* a blob is deleted, an automatic snapshot is created. The blob becomes inaccessible immediately. All other
* operations on the blob causes the service to return an HTTP status code of 404 (ResourceNotFound). You can access
* automatic snapshot using snapshot timestamp or version id. You can restore the blob by calling Put or Copy Blob
* API with automatic snapshot as source. Deleting automatic snapshot requires shared key or special SAS/RBAC
* permissions.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param deleteSnapshots Required if the blob has associated snapshots. Specify one of the following two options:
* include: Delete the base blob and all of its snapshots. only: Delete only the blob's snapshots and not the
* blob itself.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobDeleteType Optional. Only possible value is 'permanent', which specifies to permanently delete a blob
* if blob soft delete is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> deleteWithResponseAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String leaseId,
DeleteSnapshotsOptionType deleteSnapshots,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
BlobDeleteType blobDeleteType,
Context context) {
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.delete(
this.client.getUrl(),
containerName,
blob,
snapshot,
versionId,
timeout,
leaseId,
deleteSnapshots,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
blobDeleteType,
accept,
context);
}
/**
* If the storage account's soft delete feature is disabled then, when a blob is deleted, it is permanently removed
* from the storage account. If the storage account's soft delete feature is enabled, then, when a blob is deleted,
* it is marked for deletion and becomes inaccessible immediately. However, the blob service retains the blob or
* snapshot for the number of days specified by the DeleteRetentionPolicy section of [Storage service properties]
* (Set-Blob-Service-Properties.md). After the specified number of days has passed, the blob's data is permanently
* removed from the storage account. Note that you continue to be charged for the soft-deleted blob's storage until
* it is permanently removed. Use the List Blobs API and specify the "include=deleted" query parameter to discover
* which blobs and snapshots have been soft deleted. You can then use the Undelete Blob API to restore a
* soft-deleted blob. All other operations on a soft-deleted blob or snapshot causes the service to return an HTTP
* status code of 404 (ResourceNotFound). If the storage account's automatic snapshot feature is enabled, then, when
* a blob is deleted, an automatic snapshot is created. The blob becomes inaccessible immediately. All other
* operations on the blob causes the service to return an HTTP status code of 404 (ResourceNotFound). You can access
* automatic snapshot using snapshot timestamp or version id. You can restore the blob by calling Put or Copy Blob
* API with automatic snapshot as source. Deleting automatic snapshot requires shared key or special SAS/RBAC
* permissions.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param deleteSnapshots Required if the blob has associated snapshots. Specify one of the following two options:
* include: Delete the base blob and all of its snapshots. only: Delete only the blob's snapshots and not the
* blob itself.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobDeleteType Optional. Only possible value is 'permanent', which specifies to permanently delete a blob
* if blob soft delete is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono deleteAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String leaseId,
DeleteSnapshotsOptionType deleteSnapshots,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
BlobDeleteType blobDeleteType) {
return deleteWithResponseAsync(
containerName,
blob,
snapshot,
versionId,
timeout,
leaseId,
deleteSnapshots,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
blobDeleteType)
.flatMap(ignored -> Mono.empty());
}
/**
* If the storage account's soft delete feature is disabled then, when a blob is deleted, it is permanently removed
* from the storage account. If the storage account's soft delete feature is enabled, then, when a blob is deleted,
* it is marked for deletion and becomes inaccessible immediately. However, the blob service retains the blob or
* snapshot for the number of days specified by the DeleteRetentionPolicy section of [Storage service properties]
* (Set-Blob-Service-Properties.md). After the specified number of days has passed, the blob's data is permanently
* removed from the storage account. Note that you continue to be charged for the soft-deleted blob's storage until
* it is permanently removed. Use the List Blobs API and specify the "include=deleted" query parameter to discover
* which blobs and snapshots have been soft deleted. You can then use the Undelete Blob API to restore a
* soft-deleted blob. All other operations on a soft-deleted blob or snapshot causes the service to return an HTTP
* status code of 404 (ResourceNotFound). If the storage account's automatic snapshot feature is enabled, then, when
* a blob is deleted, an automatic snapshot is created. The blob becomes inaccessible immediately. All other
* operations on the blob causes the service to return an HTTP status code of 404 (ResourceNotFound). You can access
* automatic snapshot using snapshot timestamp or version id. You can restore the blob by calling Put or Copy Blob
* API with automatic snapshot as source. Deleting automatic snapshot requires shared key or special SAS/RBAC
* permissions.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param deleteSnapshots Required if the blob has associated snapshots. Specify one of the following two options:
* include: Delete the base blob and all of its snapshots. only: Delete only the blob's snapshots and not the
* blob itself.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobDeleteType Optional. Only possible value is 'permanent', which specifies to permanently delete a blob
* if blob soft delete is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono deleteAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String leaseId,
DeleteSnapshotsOptionType deleteSnapshots,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
BlobDeleteType blobDeleteType,
Context context) {
return deleteWithResponseAsync(
containerName,
blob,
snapshot,
versionId,
timeout,
leaseId,
deleteSnapshots,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
blobDeleteType,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* If the storage account's soft delete feature is disabled then, when a blob is deleted, it is permanently removed
* from the storage account. If the storage account's soft delete feature is enabled, then, when a blob is deleted,
* it is marked for deletion and becomes inaccessible immediately. However, the blob service retains the blob or
* snapshot for the number of days specified by the DeleteRetentionPolicy section of [Storage service properties]
* (Set-Blob-Service-Properties.md). After the specified number of days has passed, the blob's data is permanently
* removed from the storage account. Note that you continue to be charged for the soft-deleted blob's storage until
* it is permanently removed. Use the List Blobs API and specify the "include=deleted" query parameter to discover
* which blobs and snapshots have been soft deleted. You can then use the Undelete Blob API to restore a
* soft-deleted blob. All other operations on a soft-deleted blob or snapshot causes the service to return an HTTP
* status code of 404 (ResourceNotFound). If the storage account's automatic snapshot feature is enabled, then, when
* a blob is deleted, an automatic snapshot is created. The blob becomes inaccessible immediately. All other
* operations on the blob causes the service to return an HTTP status code of 404 (ResourceNotFound). You can access
* automatic snapshot using snapshot timestamp or version id. You can restore the blob by calling Put or Copy Blob
* API with automatic snapshot as source. Deleting automatic snapshot requires shared key or special SAS/RBAC
* permissions.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param deleteSnapshots Required if the blob has associated snapshots. Specify one of the following two options:
* include: Delete the base blob and all of its snapshots. only: Delete only the blob's snapshots and not the
* blob itself.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobDeleteType Optional. Only possible value is 'permanent', which specifies to permanently delete a blob
* if blob soft delete is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> deleteNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String leaseId,
DeleteSnapshotsOptionType deleteSnapshots,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
BlobDeleteType blobDeleteType) {
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.deleteNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
snapshot,
versionId,
timeout,
leaseId,
deleteSnapshots,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
blobDeleteType,
accept,
context));
}
/**
* If the storage account's soft delete feature is disabled then, when a blob is deleted, it is permanently removed
* from the storage account. If the storage account's soft delete feature is enabled, then, when a blob is deleted,
* it is marked for deletion and becomes inaccessible immediately. However, the blob service retains the blob or
* snapshot for the number of days specified by the DeleteRetentionPolicy section of [Storage service properties]
* (Set-Blob-Service-Properties.md). After the specified number of days has passed, the blob's data is permanently
* removed from the storage account. Note that you continue to be charged for the soft-deleted blob's storage until
* it is permanently removed. Use the List Blobs API and specify the "include=deleted" query parameter to discover
* which blobs and snapshots have been soft deleted. You can then use the Undelete Blob API to restore a
* soft-deleted blob. All other operations on a soft-deleted blob or snapshot causes the service to return an HTTP
* status code of 404 (ResourceNotFound). If the storage account's automatic snapshot feature is enabled, then, when
* a blob is deleted, an automatic snapshot is created. The blob becomes inaccessible immediately. All other
* operations on the blob causes the service to return an HTTP status code of 404 (ResourceNotFound). You can access
* automatic snapshot using snapshot timestamp or version id. You can restore the blob by calling Put or Copy Blob
* API with automatic snapshot as source. Deleting automatic snapshot requires shared key or special SAS/RBAC
* permissions.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param deleteSnapshots Required if the blob has associated snapshots. Specify one of the following two options:
* include: Delete the base blob and all of its snapshots. only: Delete only the blob's snapshots and not the
* blob itself.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobDeleteType Optional. Only possible value is 'permanent', which specifies to permanently delete a blob
* if blob soft delete is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> deleteNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String snapshot,
String versionId,
Integer timeout,
String leaseId,
DeleteSnapshotsOptionType deleteSnapshots,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
BlobDeleteType blobDeleteType,
Context context) {
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.deleteNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
snapshot,
versionId,
timeout,
leaseId,
deleteSnapshots,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
blobDeleteType,
accept,
context);
}
/**
* Undelete a blob that was previously soft deleted.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> undeleteWithResponseAsync(
String containerName, String blob, Integer timeout, String requestId) {
final String comp = "undelete";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.undelete(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* Undelete a blob that was previously soft deleted.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> undeleteWithResponseAsync(
String containerName, String blob, Integer timeout, String requestId, Context context) {
final String comp = "undelete";
final String accept = "application/xml";
return service.undelete(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* Undelete a blob that was previously soft deleted.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono undeleteAsync(String containerName, String blob, Integer timeout, String requestId) {
return undeleteWithResponseAsync(containerName, blob, timeout, requestId).flatMap(ignored -> Mono.empty());
}
/**
* Undelete a blob that was previously soft deleted.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono undeleteAsync(
String containerName, String blob, Integer timeout, String requestId, Context context) {
return undeleteWithResponseAsync(containerName, blob, timeout, requestId, context)
.flatMap(ignored -> Mono.empty());
}
/**
* Undelete a blob that was previously soft deleted.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> undeleteNoCustomHeadersWithResponseAsync(
String containerName, String blob, Integer timeout, String requestId) {
final String comp = "undelete";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.undeleteNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* Undelete a blob that was previously soft deleted.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> undeleteNoCustomHeadersWithResponseAsync(
String containerName, String blob, Integer timeout, String requestId, Context context) {
final String comp = "undelete";
final String accept = "application/xml";
return service.undeleteNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* Sets the time a blob will expire and be deleted.
*
* @param containerName The container name.
* @param blob The blob name.
* @param expiryOptions Required. Indicates mode of the expiry time.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param expiresOn The time to set the blob to expiry.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setExpiryWithResponseAsync(
String containerName,
String blob,
BlobExpiryOptions expiryOptions,
Integer timeout,
String requestId,
String expiresOn) {
final String comp = "expiry";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.setExpiry(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
expiryOptions,
expiresOn,
accept,
context));
}
/**
* Sets the time a blob will expire and be deleted.
*
* @param containerName The container name.
* @param blob The blob name.
* @param expiryOptions Required. Indicates mode of the expiry time.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param expiresOn The time to set the blob to expiry.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setExpiryWithResponseAsync(
String containerName,
String blob,
BlobExpiryOptions expiryOptions,
Integer timeout,
String requestId,
String expiresOn,
Context context) {
final String comp = "expiry";
final String accept = "application/xml";
return service.setExpiry(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
expiryOptions,
expiresOn,
accept,
context);
}
/**
* Sets the time a blob will expire and be deleted.
*
* @param containerName The container name.
* @param blob The blob name.
* @param expiryOptions Required. Indicates mode of the expiry time.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param expiresOn The time to set the blob to expiry.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setExpiryAsync(
String containerName,
String blob,
BlobExpiryOptions expiryOptions,
Integer timeout,
String requestId,
String expiresOn) {
return setExpiryWithResponseAsync(containerName, blob, expiryOptions, timeout, requestId, expiresOn)
.flatMap(ignored -> Mono.empty());
}
/**
* Sets the time a blob will expire and be deleted.
*
* @param containerName The container name.
* @param blob The blob name.
* @param expiryOptions Required. Indicates mode of the expiry time.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param expiresOn The time to set the blob to expiry.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setExpiryAsync(
String containerName,
String blob,
BlobExpiryOptions expiryOptions,
Integer timeout,
String requestId,
String expiresOn,
Context context) {
return setExpiryWithResponseAsync(containerName, blob, expiryOptions, timeout, requestId, expiresOn, context)
.flatMap(ignored -> Mono.empty());
}
/**
* Sets the time a blob will expire and be deleted.
*
* @param containerName The container name.
* @param blob The blob name.
* @param expiryOptions Required. Indicates mode of the expiry time.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param expiresOn The time to set the blob to expiry.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setExpiryNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
BlobExpiryOptions expiryOptions,
Integer timeout,
String requestId,
String expiresOn) {
final String comp = "expiry";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.setExpiryNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
expiryOptions,
expiresOn,
accept,
context));
}
/**
* Sets the time a blob will expire and be deleted.
*
* @param containerName The container name.
* @param blob The blob name.
* @param expiryOptions Required. Indicates mode of the expiry time.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param expiresOn The time to set the blob to expiry.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setExpiryNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
BlobExpiryOptions expiryOptions,
Integer timeout,
String requestId,
String expiresOn,
Context context) {
final String comp = "expiry";
final String accept = "application/xml";
return service.setExpiryNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
expiryOptions,
expiresOn,
accept,
context);
}
/**
* The Set HTTP Headers operation sets system properties on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobHttpHeaders Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setHttpHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
BlobHttpHeaders blobHttpHeaders) {
final String comp = "properties";
final String accept = "application/xml";
String cacheControlInternal = null;
if (blobHttpHeaders != null) {
cacheControlInternal = blobHttpHeaders.getCacheControl();
}
String cacheControl = cacheControlInternal;
String contentTypeInternal = null;
if (blobHttpHeaders != null) {
contentTypeInternal = blobHttpHeaders.getContentType();
}
String contentType = contentTypeInternal;
byte[] contentMd5Internal = null;
if (blobHttpHeaders != null) {
contentMd5Internal = blobHttpHeaders.getContentMd5();
}
byte[] contentMd5 = contentMd5Internal;
String contentEncodingInternal = null;
if (blobHttpHeaders != null) {
contentEncodingInternal = blobHttpHeaders.getContentEncoding();
}
String contentEncoding = contentEncodingInternal;
String contentLanguageInternal = null;
if (blobHttpHeaders != null) {
contentLanguageInternal = blobHttpHeaders.getContentLanguage();
}
String contentLanguage = contentLanguageInternal;
String contentDispositionInternal = null;
if (blobHttpHeaders != null) {
contentDispositionInternal = blobHttpHeaders.getContentDisposition();
}
String contentDisposition = contentDispositionInternal;
String contentMd5Converted = Base64Util.encodeToString(contentMd5);
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.setHttpHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
cacheControl,
contentType,
contentMd5Converted,
contentEncoding,
contentLanguage,
leaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
contentDisposition,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Set HTTP Headers operation sets system properties on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobHttpHeaders Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setHttpHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
BlobHttpHeaders blobHttpHeaders,
Context context) {
final String comp = "properties";
final String accept = "application/xml";
String cacheControlInternal = null;
if (blobHttpHeaders != null) {
cacheControlInternal = blobHttpHeaders.getCacheControl();
}
String cacheControl = cacheControlInternal;
String contentTypeInternal = null;
if (blobHttpHeaders != null) {
contentTypeInternal = blobHttpHeaders.getContentType();
}
String contentType = contentTypeInternal;
byte[] contentMd5Internal = null;
if (blobHttpHeaders != null) {
contentMd5Internal = blobHttpHeaders.getContentMd5();
}
byte[] contentMd5 = contentMd5Internal;
String contentEncodingInternal = null;
if (blobHttpHeaders != null) {
contentEncodingInternal = blobHttpHeaders.getContentEncoding();
}
String contentEncoding = contentEncodingInternal;
String contentLanguageInternal = null;
if (blobHttpHeaders != null) {
contentLanguageInternal = blobHttpHeaders.getContentLanguage();
}
String contentLanguage = contentLanguageInternal;
String contentDispositionInternal = null;
if (blobHttpHeaders != null) {
contentDispositionInternal = blobHttpHeaders.getContentDisposition();
}
String contentDisposition = contentDispositionInternal;
String contentMd5Converted = Base64Util.encodeToString(contentMd5);
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.setHttpHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
cacheControl,
contentType,
contentMd5Converted,
contentEncoding,
contentLanguage,
leaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
contentDisposition,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Set HTTP Headers operation sets system properties on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobHttpHeaders Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setHttpHeadersAsync(
String containerName,
String blob,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
BlobHttpHeaders blobHttpHeaders) {
return setHttpHeadersWithResponseAsync(
containerName,
blob,
timeout,
leaseId,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
blobHttpHeaders)
.flatMap(ignored -> Mono.empty());
}
/**
* The Set HTTP Headers operation sets system properties on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobHttpHeaders Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setHttpHeadersAsync(
String containerName,
String blob,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
BlobHttpHeaders blobHttpHeaders,
Context context) {
return setHttpHeadersWithResponseAsync(
containerName,
blob,
timeout,
leaseId,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
blobHttpHeaders,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* The Set HTTP Headers operation sets system properties on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobHttpHeaders Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setHttpHeadersNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
BlobHttpHeaders blobHttpHeaders) {
final String comp = "properties";
final String accept = "application/xml";
String cacheControlInternal = null;
if (blobHttpHeaders != null) {
cacheControlInternal = blobHttpHeaders.getCacheControl();
}
String cacheControl = cacheControlInternal;
String contentTypeInternal = null;
if (blobHttpHeaders != null) {
contentTypeInternal = blobHttpHeaders.getContentType();
}
String contentType = contentTypeInternal;
byte[] contentMd5Internal = null;
if (blobHttpHeaders != null) {
contentMd5Internal = blobHttpHeaders.getContentMd5();
}
byte[] contentMd5 = contentMd5Internal;
String contentEncodingInternal = null;
if (blobHttpHeaders != null) {
contentEncodingInternal = blobHttpHeaders.getContentEncoding();
}
String contentEncoding = contentEncodingInternal;
String contentLanguageInternal = null;
if (blobHttpHeaders != null) {
contentLanguageInternal = blobHttpHeaders.getContentLanguage();
}
String contentLanguage = contentLanguageInternal;
String contentDispositionInternal = null;
if (blobHttpHeaders != null) {
contentDispositionInternal = blobHttpHeaders.getContentDisposition();
}
String contentDisposition = contentDispositionInternal;
String contentMd5Converted = Base64Util.encodeToString(contentMd5);
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.setHttpHeadersNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
cacheControl,
contentType,
contentMd5Converted,
contentEncoding,
contentLanguage,
leaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
contentDisposition,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Set HTTP Headers operation sets system properties on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobHttpHeaders Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setHttpHeadersNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
BlobHttpHeaders blobHttpHeaders,
Context context) {
final String comp = "properties";
final String accept = "application/xml";
String cacheControlInternal = null;
if (blobHttpHeaders != null) {
cacheControlInternal = blobHttpHeaders.getCacheControl();
}
String cacheControl = cacheControlInternal;
String contentTypeInternal = null;
if (blobHttpHeaders != null) {
contentTypeInternal = blobHttpHeaders.getContentType();
}
String contentType = contentTypeInternal;
byte[] contentMd5Internal = null;
if (blobHttpHeaders != null) {
contentMd5Internal = blobHttpHeaders.getContentMd5();
}
byte[] contentMd5 = contentMd5Internal;
String contentEncodingInternal = null;
if (blobHttpHeaders != null) {
contentEncodingInternal = blobHttpHeaders.getContentEncoding();
}
String contentEncoding = contentEncodingInternal;
String contentLanguageInternal = null;
if (blobHttpHeaders != null) {
contentLanguageInternal = blobHttpHeaders.getContentLanguage();
}
String contentLanguage = contentLanguageInternal;
String contentDispositionInternal = null;
if (blobHttpHeaders != null) {
contentDispositionInternal = blobHttpHeaders.getContentDisposition();
}
String contentDisposition = contentDispositionInternal;
String contentMd5Converted = Base64Util.encodeToString(contentMd5);
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.setHttpHeadersNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
cacheControl,
contentType,
contentMd5Converted,
contentEncoding,
contentLanguage,
leaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
contentDisposition,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Set Immutability Policy operation sets the immutability policy on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setImmutabilityPolicyWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String requestId,
OffsetDateTime ifUnmodifiedSince,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode) {
final String comp = "immutabilityPolicies";
final String accept = "application/xml";
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
DateTimeRfc1123 immutabilityPolicyExpiryConverted =
immutabilityPolicyExpiry == null ? null : new DateTimeRfc1123(immutabilityPolicyExpiry);
return FluxUtil.withContext(
context ->
service.setImmutabilityPolicy(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
ifUnmodifiedSinceConverted,
immutabilityPolicyExpiryConverted,
immutabilityPolicyMode,
accept,
context));
}
/**
* The Set Immutability Policy operation sets the immutability policy on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setImmutabilityPolicyWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String requestId,
OffsetDateTime ifUnmodifiedSince,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Context context) {
final String comp = "immutabilityPolicies";
final String accept = "application/xml";
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
DateTimeRfc1123 immutabilityPolicyExpiryConverted =
immutabilityPolicyExpiry == null ? null : new DateTimeRfc1123(immutabilityPolicyExpiry);
return service.setImmutabilityPolicy(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
ifUnmodifiedSinceConverted,
immutabilityPolicyExpiryConverted,
immutabilityPolicyMode,
accept,
context);
}
/**
* The Set Immutability Policy operation sets the immutability policy on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setImmutabilityPolicyAsync(
String containerName,
String blob,
Integer timeout,
String requestId,
OffsetDateTime ifUnmodifiedSince,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode) {
return setImmutabilityPolicyWithResponseAsync(
containerName,
blob,
timeout,
requestId,
ifUnmodifiedSince,
immutabilityPolicyExpiry,
immutabilityPolicyMode)
.flatMap(ignored -> Mono.empty());
}
/**
* The Set Immutability Policy operation sets the immutability policy on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setImmutabilityPolicyAsync(
String containerName,
String blob,
Integer timeout,
String requestId,
OffsetDateTime ifUnmodifiedSince,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Context context) {
return setImmutabilityPolicyWithResponseAsync(
containerName,
blob,
timeout,
requestId,
ifUnmodifiedSince,
immutabilityPolicyExpiry,
immutabilityPolicyMode,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* The Set Immutability Policy operation sets the immutability policy on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setImmutabilityPolicyNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String requestId,
OffsetDateTime ifUnmodifiedSince,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode) {
final String comp = "immutabilityPolicies";
final String accept = "application/xml";
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
DateTimeRfc1123 immutabilityPolicyExpiryConverted =
immutabilityPolicyExpiry == null ? null : new DateTimeRfc1123(immutabilityPolicyExpiry);
return FluxUtil.withContext(
context ->
service.setImmutabilityPolicyNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
ifUnmodifiedSinceConverted,
immutabilityPolicyExpiryConverted,
immutabilityPolicyMode,
accept,
context));
}
/**
* The Set Immutability Policy operation sets the immutability policy on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setImmutabilityPolicyNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String requestId,
OffsetDateTime ifUnmodifiedSince,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Context context) {
final String comp = "immutabilityPolicies";
final String accept = "application/xml";
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
DateTimeRfc1123 immutabilityPolicyExpiryConverted =
immutabilityPolicyExpiry == null ? null : new DateTimeRfc1123(immutabilityPolicyExpiry);
return service.setImmutabilityPolicyNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
ifUnmodifiedSinceConverted,
immutabilityPolicyExpiryConverted,
immutabilityPolicyMode,
accept,
context);
}
/**
* The Delete Immutability Policy operation deletes the immutability policy on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> deleteImmutabilityPolicyWithResponseAsync(
String containerName, String blob, Integer timeout, String requestId) {
final String comp = "immutabilityPolicies";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.deleteImmutabilityPolicy(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Delete Immutability Policy operation deletes the immutability policy on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> deleteImmutabilityPolicyWithResponseAsync(
String containerName, String blob, Integer timeout, String requestId, Context context) {
final String comp = "immutabilityPolicies";
final String accept = "application/xml";
return service.deleteImmutabilityPolicy(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Delete Immutability Policy operation deletes the immutability policy on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono deleteImmutabilityPolicyAsync(
String containerName, String blob, Integer timeout, String requestId) {
return deleteImmutabilityPolicyWithResponseAsync(containerName, blob, timeout, requestId)
.flatMap(ignored -> Mono.empty());
}
/**
* The Delete Immutability Policy operation deletes the immutability policy on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono deleteImmutabilityPolicyAsync(
String containerName, String blob, Integer timeout, String requestId, Context context) {
return deleteImmutabilityPolicyWithResponseAsync(containerName, blob, timeout, requestId, context)
.flatMap(ignored -> Mono.empty());
}
/**
* The Delete Immutability Policy operation deletes the immutability policy on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> deleteImmutabilityPolicyNoCustomHeadersWithResponseAsync(
String containerName, String blob, Integer timeout, String requestId) {
final String comp = "immutabilityPolicies";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.deleteImmutabilityPolicyNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Delete Immutability Policy operation deletes the immutability policy on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> deleteImmutabilityPolicyNoCustomHeadersWithResponseAsync(
String containerName, String blob, Integer timeout, String requestId, Context context) {
final String comp = "immutabilityPolicies";
final String accept = "application/xml";
return service.deleteImmutabilityPolicyNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Set Legal Hold operation sets a legal hold on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setLegalHoldWithResponseAsync(
String containerName, String blob, boolean legalHold, Integer timeout, String requestId) {
final String comp = "legalhold";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.setLegalHold(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
legalHold,
accept,
context));
}
/**
* The Set Legal Hold operation sets a legal hold on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setLegalHoldWithResponseAsync(
String containerName, String blob, boolean legalHold, Integer timeout, String requestId, Context context) {
final String comp = "legalhold";
final String accept = "application/xml";
return service.setLegalHold(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
legalHold,
accept,
context);
}
/**
* The Set Legal Hold operation sets a legal hold on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setLegalHoldAsync(
String containerName, String blob, boolean legalHold, Integer timeout, String requestId) {
return setLegalHoldWithResponseAsync(containerName, blob, legalHold, timeout, requestId)
.flatMap(ignored -> Mono.empty());
}
/**
* The Set Legal Hold operation sets a legal hold on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setLegalHoldAsync(
String containerName, String blob, boolean legalHold, Integer timeout, String requestId, Context context) {
return setLegalHoldWithResponseAsync(containerName, blob, legalHold, timeout, requestId, context)
.flatMap(ignored -> Mono.empty());
}
/**
* The Set Legal Hold operation sets a legal hold on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setLegalHoldNoCustomHeadersWithResponseAsync(
String containerName, String blob, boolean legalHold, Integer timeout, String requestId) {
final String comp = "legalhold";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.setLegalHoldNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
legalHold,
accept,
context));
}
/**
* The Set Legal Hold operation sets a legal hold on the blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setLegalHoldNoCustomHeadersWithResponseAsync(
String containerName, String blob, boolean legalHold, Integer timeout, String requestId, Context context) {
final String comp = "legalhold";
final String accept = "application/xml";
return service.setLegalHoldNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
legalHold,
accept,
context);
}
/**
* The Set Blob Metadata operation sets user-defined metadata for the specified blob as one or more name-value
* pairs.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param encryptionScopeParam Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setMetadataWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Map metadata,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo,
EncryptionScope encryptionScopeParam) {
final String comp = "metadata";
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
String encryptionScopeInternal = null;
if (encryptionScopeParam != null) {
encryptionScopeInternal = encryptionScopeParam.getEncryptionScope();
}
String encryptionScope = encryptionScopeInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.setMetadata(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
metadata,
leaseId,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
encryptionScope,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Set Blob Metadata operation sets user-defined metadata for the specified blob as one or more name-value
* pairs.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param encryptionScopeParam Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setMetadataWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Map metadata,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo,
EncryptionScope encryptionScopeParam,
Context context) {
final String comp = "metadata";
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
String encryptionScopeInternal = null;
if (encryptionScopeParam != null) {
encryptionScopeInternal = encryptionScopeParam.getEncryptionScope();
}
String encryptionScope = encryptionScopeInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.setMetadata(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
metadata,
leaseId,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
encryptionScope,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Set Blob Metadata operation sets user-defined metadata for the specified blob as one or more name-value
* pairs.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param encryptionScopeParam Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setMetadataAsync(
String containerName,
String blob,
Integer timeout,
Map metadata,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo,
EncryptionScope encryptionScopeParam) {
return setMetadataWithResponseAsync(
containerName,
blob,
timeout,
metadata,
leaseId,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
cpkInfo,
encryptionScopeParam)
.flatMap(ignored -> Mono.empty());
}
/**
* The Set Blob Metadata operation sets user-defined metadata for the specified blob as one or more name-value
* pairs.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param encryptionScopeParam Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setMetadataAsync(
String containerName,
String blob,
Integer timeout,
Map metadata,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo,
EncryptionScope encryptionScopeParam,
Context context) {
return setMetadataWithResponseAsync(
containerName,
blob,
timeout,
metadata,
leaseId,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
cpkInfo,
encryptionScopeParam,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* The Set Blob Metadata operation sets user-defined metadata for the specified blob as one or more name-value
* pairs.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param encryptionScopeParam Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setMetadataNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Map metadata,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo,
EncryptionScope encryptionScopeParam) {
final String comp = "metadata";
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
String encryptionScopeInternal = null;
if (encryptionScopeParam != null) {
encryptionScopeInternal = encryptionScopeParam.getEncryptionScope();
}
String encryptionScope = encryptionScopeInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.setMetadataNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
metadata,
leaseId,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
encryptionScope,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Set Blob Metadata operation sets user-defined metadata for the specified blob as one or more name-value
* pairs.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param encryptionScopeParam Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setMetadataNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Map metadata,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
CpkInfo cpkInfo,
EncryptionScope encryptionScopeParam,
Context context) {
final String comp = "metadata";
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
String encryptionScopeInternal = null;
if (encryptionScopeParam != null) {
encryptionScopeInternal = encryptionScopeParam.getEncryptionScope();
}
String encryptionScope = encryptionScopeInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.setMetadataNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
metadata,
leaseId,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
encryptionScope,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param duration Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never
* expires. A non-infinite lease can be between 15 and 60 seconds. A lease duration cannot be changed using
* renew or change.
* @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 (Invalid request)
* if the proposed lease ID is not in the correct format. See Guid Constructor (String) for a list of valid GUID
* string formats.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> acquireLeaseWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Integer duration,
String proposedLeaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
final String comp = "lease";
final String action = "acquire";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.acquireLease(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
duration,
proposedLeaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param duration Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never
* expires. A non-infinite lease can be between 15 and 60 seconds. A lease duration cannot be changed using
* renew or change.
* @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 (Invalid request)
* if the proposed lease ID is not in the correct format. See Guid Constructor (String) for a list of valid GUID
* string formats.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> acquireLeaseWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Integer duration,
String proposedLeaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
final String comp = "lease";
final String action = "acquire";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.acquireLease(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
duration,
proposedLeaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param duration Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never
* expires. A non-infinite lease can be between 15 and 60 seconds. A lease duration cannot be changed using
* renew or change.
* @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 (Invalid request)
* if the proposed lease ID is not in the correct format. See Guid Constructor (String) for a list of valid GUID
* string formats.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono acquireLeaseAsync(
String containerName,
String blob,
Integer timeout,
Integer duration,
String proposedLeaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
return acquireLeaseWithResponseAsync(
containerName,
blob,
timeout,
duration,
proposedLeaseId,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId)
.flatMap(ignored -> Mono.empty());
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param duration Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never
* expires. A non-infinite lease can be between 15 and 60 seconds. A lease duration cannot be changed using
* renew or change.
* @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 (Invalid request)
* if the proposed lease ID is not in the correct format. See Guid Constructor (String) for a list of valid GUID
* string formats.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono acquireLeaseAsync(
String containerName,
String blob,
Integer timeout,
Integer duration,
String proposedLeaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
return acquireLeaseWithResponseAsync(
containerName,
blob,
timeout,
duration,
proposedLeaseId,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param duration Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never
* expires. A non-infinite lease can be between 15 and 60 seconds. A lease duration cannot be changed using
* renew or change.
* @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 (Invalid request)
* if the proposed lease ID is not in the correct format. See Guid Constructor (String) for a list of valid GUID
* string formats.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> acquireLeaseNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Integer duration,
String proposedLeaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
final String comp = "lease";
final String action = "acquire";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.acquireLeaseNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
duration,
proposedLeaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param duration Specifies the duration of the lease, in seconds, or negative one (-1) for a lease that never
* expires. A non-infinite lease can be between 15 and 60 seconds. A lease duration cannot be changed using
* renew or change.
* @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 (Invalid request)
* if the proposed lease ID is not in the correct format. See Guid Constructor (String) for a list of valid GUID
* string formats.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> acquireLeaseNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Integer duration,
String proposedLeaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
final String comp = "lease";
final String action = "acquire";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.acquireLeaseNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
duration,
proposedLeaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> releaseLeaseWithResponseAsync(
String containerName,
String blob,
String leaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
final String comp = "lease";
final String action = "release";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.releaseLease(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
leaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> releaseLeaseWithResponseAsync(
String containerName,
String blob,
String leaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
final String comp = "lease";
final String action = "release";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.releaseLease(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
leaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono releaseLeaseAsync(
String containerName,
String blob,
String leaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
return releaseLeaseWithResponseAsync(
containerName,
blob,
leaseId,
timeout,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId)
.flatMap(ignored -> Mono.empty());
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono releaseLeaseAsync(
String containerName,
String blob,
String leaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
return releaseLeaseWithResponseAsync(
containerName,
blob,
leaseId,
timeout,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> releaseLeaseNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String leaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
final String comp = "lease";
final String action = "release";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.releaseLeaseNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
leaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> releaseLeaseNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String leaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
final String comp = "lease";
final String action = "release";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.releaseLeaseNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
leaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> renewLeaseWithResponseAsync(
String containerName,
String blob,
String leaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
final String comp = "lease";
final String action = "renew";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.renewLease(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
leaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> renewLeaseWithResponseAsync(
String containerName,
String blob,
String leaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
final String comp = "lease";
final String action = "renew";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.renewLease(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
leaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono renewLeaseAsync(
String containerName,
String blob,
String leaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
return renewLeaseWithResponseAsync(
containerName,
blob,
leaseId,
timeout,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId)
.flatMap(ignored -> Mono.empty());
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono renewLeaseAsync(
String containerName,
String blob,
String leaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
return renewLeaseWithResponseAsync(
containerName,
blob,
leaseId,
timeout,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> renewLeaseNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String leaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
final String comp = "lease";
final String action = "renew";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.renewLeaseNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
leaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> renewLeaseNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String leaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
final String comp = "lease";
final String action = "renew";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.renewLeaseNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
leaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 (Invalid request)
* if the proposed lease ID is not in the correct format. See Guid Constructor (String) for a list of valid GUID
* string formats.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> changeLeaseWithResponseAsync(
String containerName,
String blob,
String leaseId,
String proposedLeaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
final String comp = "lease";
final String action = "change";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.changeLease(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
leaseId,
proposedLeaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 (Invalid request)
* if the proposed lease ID is not in the correct format. See Guid Constructor (String) for a list of valid GUID
* string formats.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> changeLeaseWithResponseAsync(
String containerName,
String blob,
String leaseId,
String proposedLeaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
final String comp = "lease";
final String action = "change";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.changeLease(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
leaseId,
proposedLeaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 (Invalid request)
* if the proposed lease ID is not in the correct format. See Guid Constructor (String) for a list of valid GUID
* string formats.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono changeLeaseAsync(
String containerName,
String blob,
String leaseId,
String proposedLeaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
return changeLeaseWithResponseAsync(
containerName,
blob,
leaseId,
proposedLeaseId,
timeout,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId)
.flatMap(ignored -> Mono.empty());
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 (Invalid request)
* if the proposed lease ID is not in the correct format. See Guid Constructor (String) for a list of valid GUID
* string formats.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono changeLeaseAsync(
String containerName,
String blob,
String leaseId,
String proposedLeaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
return changeLeaseWithResponseAsync(
containerName,
blob,
leaseId,
proposedLeaseId,
timeout,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 (Invalid request)
* if the proposed lease ID is not in the correct format. See Guid Constructor (String) for a list of valid GUID
* string formats.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> changeLeaseNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String leaseId,
String proposedLeaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
final String comp = "lease";
final String action = "change";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.changeLeaseNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
leaseId,
proposedLeaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param leaseId Specifies the current lease ID on the resource.
* @param proposedLeaseId Proposed lease ID, in a GUID string format. The Blob service returns 400 (Invalid request)
* if the proposed lease ID is not in the correct format. See Guid Constructor (String) for a list of valid GUID
* string formats.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> changeLeaseNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String leaseId,
String proposedLeaseId,
Integer timeout,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
final String comp = "lease";
final String action = "change";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.changeLeaseNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
leaseId,
proposedLeaseId,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param breakPeriod For a break operation, proposed duration the lease should continue before it is broken, in
* seconds, between 0 and 60. This break period is only used if it is shorter than the time remaining on the
* lease. If longer, the time remaining on the lease is used. A new lease will not be available before the break
* period has expired, but the lease may be held for longer than the break period. If this header does not
* appear with a break operation, a fixed-duration lease breaks after the remaining lease period elapses, and an
* infinite lease breaks immediately.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> breakLeaseWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Integer breakPeriod,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
final String comp = "lease";
final String action = "break";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.breakLease(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
breakPeriod,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param breakPeriod For a break operation, proposed duration the lease should continue before it is broken, in
* seconds, between 0 and 60. This break period is only used if it is shorter than the time remaining on the
* lease. If longer, the time remaining on the lease is used. A new lease will not be available before the break
* period has expired, but the lease may be held for longer than the break period. If this header does not
* appear with a break operation, a fixed-duration lease breaks after the remaining lease period elapses, and an
* infinite lease breaks immediately.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> breakLeaseWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Integer breakPeriod,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
final String comp = "lease";
final String action = "break";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.breakLease(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
breakPeriod,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param breakPeriod For a break operation, proposed duration the lease should continue before it is broken, in
* seconds, between 0 and 60. This break period is only used if it is shorter than the time remaining on the
* lease. If longer, the time remaining on the lease is used. A new lease will not be available before the break
* period has expired, but the lease may be held for longer than the break period. If this header does not
* appear with a break operation, a fixed-duration lease breaks after the remaining lease period elapses, and an
* infinite lease breaks immediately.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono breakLeaseAsync(
String containerName,
String blob,
Integer timeout,
Integer breakPeriod,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
return breakLeaseWithResponseAsync(
containerName,
blob,
timeout,
breakPeriod,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId)
.flatMap(ignored -> Mono.empty());
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param breakPeriod For a break operation, proposed duration the lease should continue before it is broken, in
* seconds, between 0 and 60. This break period is only used if it is shorter than the time remaining on the
* lease. If longer, the time remaining on the lease is used. A new lease will not be available before the break
* period has expired, but the lease may be held for longer than the break period. If this header does not
* appear with a break operation, a fixed-duration lease breaks after the remaining lease period elapses, and an
* infinite lease breaks immediately.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono breakLeaseAsync(
String containerName,
String blob,
Integer timeout,
Integer breakPeriod,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
return breakLeaseWithResponseAsync(
containerName,
blob,
timeout,
breakPeriod,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param breakPeriod For a break operation, proposed duration the lease should continue before it is broken, in
* seconds, between 0 and 60. This break period is only used if it is shorter than the time remaining on the
* lease. If longer, the time remaining on the lease is used. A new lease will not be available before the break
* period has expired, but the lease may be held for longer than the break period. If this header does not
* appear with a break operation, a fixed-duration lease breaks after the remaining lease period elapses, and an
* infinite lease breaks immediately.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> breakLeaseNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Integer breakPeriod,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId) {
final String comp = "lease";
final String action = "break";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.breakLeaseNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
breakPeriod,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* [Update] The Lease Blob operation establishes and manages a lock on a blob for write and delete operations.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param breakPeriod For a break operation, proposed duration the lease should continue before it is broken, in
* seconds, between 0 and 60. This break period is only used if it is shorter than the time remaining on the
* lease. If longer, the time remaining on the lease is used. A new lease will not be available before the break
* period has expired, but the lease may be held for longer than the break period. If this header does not
* appear with a break operation, a fixed-duration lease breaks after the remaining lease period elapses, and an
* infinite lease breaks immediately.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> breakLeaseNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Integer breakPeriod,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
Context context) {
final String comp = "lease";
final String action = "break";
final String accept = "application/xml";
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.breakLeaseNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
action,
timeout,
breakPeriod,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Create Snapshot operation creates a read-only snapshot of a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param encryptionScopeParam Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> createSnapshotWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Map metadata,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
CpkInfo cpkInfo,
EncryptionScope encryptionScopeParam) {
final String comp = "snapshot";
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
String encryptionScopeInternal = null;
if (encryptionScopeParam != null) {
encryptionScopeInternal = encryptionScopeParam.getEncryptionScope();
}
String encryptionScope = encryptionScopeInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.createSnapshot(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
metadata,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
encryptionScope,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
leaseId,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Create Snapshot operation creates a read-only snapshot of a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param encryptionScopeParam Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> createSnapshotWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Map metadata,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
CpkInfo cpkInfo,
EncryptionScope encryptionScopeParam,
Context context) {
final String comp = "snapshot";
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
String encryptionScopeInternal = null;
if (encryptionScopeParam != null) {
encryptionScopeInternal = encryptionScopeParam.getEncryptionScope();
}
String encryptionScope = encryptionScopeInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.createSnapshot(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
metadata,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
encryptionScope,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
leaseId,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Create Snapshot operation creates a read-only snapshot of a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param encryptionScopeParam Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono createSnapshotAsync(
String containerName,
String blob,
Integer timeout,
Map metadata,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
CpkInfo cpkInfo,
EncryptionScope encryptionScopeParam) {
return createSnapshotWithResponseAsync(
containerName,
blob,
timeout,
metadata,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
leaseId,
requestId,
cpkInfo,
encryptionScopeParam)
.flatMap(ignored -> Mono.empty());
}
/**
* The Create Snapshot operation creates a read-only snapshot of a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param encryptionScopeParam Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono createSnapshotAsync(
String containerName,
String blob,
Integer timeout,
Map metadata,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
CpkInfo cpkInfo,
EncryptionScope encryptionScopeParam,
Context context) {
return createSnapshotWithResponseAsync(
containerName,
blob,
timeout,
metadata,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
leaseId,
requestId,
cpkInfo,
encryptionScopeParam,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* The Create Snapshot operation creates a read-only snapshot of a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param encryptionScopeParam Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> createSnapshotNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Map metadata,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
CpkInfo cpkInfo,
EncryptionScope encryptionScopeParam) {
final String comp = "snapshot";
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
String encryptionScopeInternal = null;
if (encryptionScopeParam != null) {
encryptionScopeInternal = encryptionScopeParam.getEncryptionScope();
}
String encryptionScope = encryptionScopeInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.createSnapshotNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
metadata,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
encryptionScope,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
leaseId,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Create Snapshot operation creates a read-only snapshot of a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param cpkInfo Parameter group.
* @param encryptionScopeParam Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> createSnapshotNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
Map metadata,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
CpkInfo cpkInfo,
EncryptionScope encryptionScopeParam,
Context context) {
final String comp = "snapshot";
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
String encryptionScopeInternal = null;
if (encryptionScopeParam != null) {
encryptionScopeInternal = encryptionScopeParam.getEncryptionScope();
}
String encryptionScope = encryptionScopeInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.createSnapshotNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
metadata,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
encryptionScope,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
leaseId,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Start Copy From URL operation copies a blob or an internet resource to a new blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in
* length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request
* URI. The source blob must either be public or must be authenticated via a shared access signature.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param tier Optional. Indicates the tier to be set on the blob.
* @param rehydratePriority Optional: Indicates the priority with which to rehydrate an archived blob.
* @param sourceIfModifiedSince Specify this header value to operate only on a blob if it has been modified since
* the specified date/time.
* @param sourceIfUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified
* since the specified date/time.
* @param sourceIfMatch Specify an ETag value to operate only on blobs with a matching value.
* @param sourceIfNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param sourceIfTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobTagsString Optional. Used to set blob tags in various blob operations.
* @param sealBlob Overrides the sealed state of the destination blob. Service version 2019-12-12 and newer.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param legalHold Specified if a legal hold should be set on the blob.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> startCopyFromURLWithResponseAsync(
String containerName,
String blob,
String copySource,
Integer timeout,
Map metadata,
AccessTier tier,
RehydratePriority rehydratePriority,
OffsetDateTime sourceIfModifiedSince,
OffsetDateTime sourceIfUnmodifiedSince,
String sourceIfMatch,
String sourceIfNoneMatch,
String sourceIfTags,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
String blobTagsString,
Boolean sealBlob,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Boolean legalHold) {
final String accept = "application/xml";
DateTimeRfc1123 sourceIfModifiedSinceConverted =
sourceIfModifiedSince == null ? null : new DateTimeRfc1123(sourceIfModifiedSince);
DateTimeRfc1123 sourceIfUnmodifiedSinceConverted =
sourceIfUnmodifiedSince == null ? null : new DateTimeRfc1123(sourceIfUnmodifiedSince);
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
DateTimeRfc1123 immutabilityPolicyExpiryConverted =
immutabilityPolicyExpiry == null ? null : new DateTimeRfc1123(immutabilityPolicyExpiry);
return FluxUtil.withContext(
context ->
service.startCopyFromURL(
this.client.getUrl(),
containerName,
blob,
timeout,
metadata,
tier,
rehydratePriority,
sourceIfModifiedSinceConverted,
sourceIfUnmodifiedSinceConverted,
sourceIfMatch,
sourceIfNoneMatch,
sourceIfTags,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
copySource,
leaseId,
this.client.getVersion(),
requestId,
blobTagsString,
sealBlob,
immutabilityPolicyExpiryConverted,
immutabilityPolicyMode,
legalHold,
accept,
context));
}
/**
* The Start Copy From URL operation copies a blob or an internet resource to a new blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in
* length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request
* URI. The source blob must either be public or must be authenticated via a shared access signature.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param tier Optional. Indicates the tier to be set on the blob.
* @param rehydratePriority Optional: Indicates the priority with which to rehydrate an archived blob.
* @param sourceIfModifiedSince Specify this header value to operate only on a blob if it has been modified since
* the specified date/time.
* @param sourceIfUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified
* since the specified date/time.
* @param sourceIfMatch Specify an ETag value to operate only on blobs with a matching value.
* @param sourceIfNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param sourceIfTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobTagsString Optional. Used to set blob tags in various blob operations.
* @param sealBlob Overrides the sealed state of the destination blob. Service version 2019-12-12 and newer.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> startCopyFromURLWithResponseAsync(
String containerName,
String blob,
String copySource,
Integer timeout,
Map metadata,
AccessTier tier,
RehydratePriority rehydratePriority,
OffsetDateTime sourceIfModifiedSince,
OffsetDateTime sourceIfUnmodifiedSince,
String sourceIfMatch,
String sourceIfNoneMatch,
String sourceIfTags,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
String blobTagsString,
Boolean sealBlob,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Boolean legalHold,
Context context) {
final String accept = "application/xml";
DateTimeRfc1123 sourceIfModifiedSinceConverted =
sourceIfModifiedSince == null ? null : new DateTimeRfc1123(sourceIfModifiedSince);
DateTimeRfc1123 sourceIfUnmodifiedSinceConverted =
sourceIfUnmodifiedSince == null ? null : new DateTimeRfc1123(sourceIfUnmodifiedSince);
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
DateTimeRfc1123 immutabilityPolicyExpiryConverted =
immutabilityPolicyExpiry == null ? null : new DateTimeRfc1123(immutabilityPolicyExpiry);
return service.startCopyFromURL(
this.client.getUrl(),
containerName,
blob,
timeout,
metadata,
tier,
rehydratePriority,
sourceIfModifiedSinceConverted,
sourceIfUnmodifiedSinceConverted,
sourceIfMatch,
sourceIfNoneMatch,
sourceIfTags,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
copySource,
leaseId,
this.client.getVersion(),
requestId,
blobTagsString,
sealBlob,
immutabilityPolicyExpiryConverted,
immutabilityPolicyMode,
legalHold,
accept,
context);
}
/**
* The Start Copy From URL operation copies a blob or an internet resource to a new blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in
* length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request
* URI. The source blob must either be public or must be authenticated via a shared access signature.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param tier Optional. Indicates the tier to be set on the blob.
* @param rehydratePriority Optional: Indicates the priority with which to rehydrate an archived blob.
* @param sourceIfModifiedSince Specify this header value to operate only on a blob if it has been modified since
* the specified date/time.
* @param sourceIfUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified
* since the specified date/time.
* @param sourceIfMatch Specify an ETag value to operate only on blobs with a matching value.
* @param sourceIfNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param sourceIfTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobTagsString Optional. Used to set blob tags in various blob operations.
* @param sealBlob Overrides the sealed state of the destination blob. Service version 2019-12-12 and newer.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param legalHold Specified if a legal hold should be set on the blob.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono startCopyFromURLAsync(
String containerName,
String blob,
String copySource,
Integer timeout,
Map metadata,
AccessTier tier,
RehydratePriority rehydratePriority,
OffsetDateTime sourceIfModifiedSince,
OffsetDateTime sourceIfUnmodifiedSince,
String sourceIfMatch,
String sourceIfNoneMatch,
String sourceIfTags,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
String blobTagsString,
Boolean sealBlob,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Boolean legalHold) {
return startCopyFromURLWithResponseAsync(
containerName,
blob,
copySource,
timeout,
metadata,
tier,
rehydratePriority,
sourceIfModifiedSince,
sourceIfUnmodifiedSince,
sourceIfMatch,
sourceIfNoneMatch,
sourceIfTags,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
leaseId,
requestId,
blobTagsString,
sealBlob,
immutabilityPolicyExpiry,
immutabilityPolicyMode,
legalHold)
.flatMap(ignored -> Mono.empty());
}
/**
* The Start Copy From URL operation copies a blob or an internet resource to a new blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in
* length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request
* URI. The source blob must either be public or must be authenticated via a shared access signature.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param tier Optional. Indicates the tier to be set on the blob.
* @param rehydratePriority Optional: Indicates the priority with which to rehydrate an archived blob.
* @param sourceIfModifiedSince Specify this header value to operate only on a blob if it has been modified since
* the specified date/time.
* @param sourceIfUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified
* since the specified date/time.
* @param sourceIfMatch Specify an ETag value to operate only on blobs with a matching value.
* @param sourceIfNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param sourceIfTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobTagsString Optional. Used to set blob tags in various blob operations.
* @param sealBlob Overrides the sealed state of the destination blob. Service version 2019-12-12 and newer.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono startCopyFromURLAsync(
String containerName,
String blob,
String copySource,
Integer timeout,
Map metadata,
AccessTier tier,
RehydratePriority rehydratePriority,
OffsetDateTime sourceIfModifiedSince,
OffsetDateTime sourceIfUnmodifiedSince,
String sourceIfMatch,
String sourceIfNoneMatch,
String sourceIfTags,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
String blobTagsString,
Boolean sealBlob,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Boolean legalHold,
Context context) {
return startCopyFromURLWithResponseAsync(
containerName,
blob,
copySource,
timeout,
metadata,
tier,
rehydratePriority,
sourceIfModifiedSince,
sourceIfUnmodifiedSince,
sourceIfMatch,
sourceIfNoneMatch,
sourceIfTags,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
leaseId,
requestId,
blobTagsString,
sealBlob,
immutabilityPolicyExpiry,
immutabilityPolicyMode,
legalHold,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* The Start Copy From URL operation copies a blob or an internet resource to a new blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in
* length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request
* URI. The source blob must either be public or must be authenticated via a shared access signature.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param tier Optional. Indicates the tier to be set on the blob.
* @param rehydratePriority Optional: Indicates the priority with which to rehydrate an archived blob.
* @param sourceIfModifiedSince Specify this header value to operate only on a blob if it has been modified since
* the specified date/time.
* @param sourceIfUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified
* since the specified date/time.
* @param sourceIfMatch Specify an ETag value to operate only on blobs with a matching value.
* @param sourceIfNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param sourceIfTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobTagsString Optional. Used to set blob tags in various blob operations.
* @param sealBlob Overrides the sealed state of the destination blob. Service version 2019-12-12 and newer.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param legalHold Specified if a legal hold should be set on the blob.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> startCopyFromURLNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String copySource,
Integer timeout,
Map metadata,
AccessTier tier,
RehydratePriority rehydratePriority,
OffsetDateTime sourceIfModifiedSince,
OffsetDateTime sourceIfUnmodifiedSince,
String sourceIfMatch,
String sourceIfNoneMatch,
String sourceIfTags,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
String blobTagsString,
Boolean sealBlob,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Boolean legalHold) {
final String accept = "application/xml";
DateTimeRfc1123 sourceIfModifiedSinceConverted =
sourceIfModifiedSince == null ? null : new DateTimeRfc1123(sourceIfModifiedSince);
DateTimeRfc1123 sourceIfUnmodifiedSinceConverted =
sourceIfUnmodifiedSince == null ? null : new DateTimeRfc1123(sourceIfUnmodifiedSince);
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
DateTimeRfc1123 immutabilityPolicyExpiryConverted =
immutabilityPolicyExpiry == null ? null : new DateTimeRfc1123(immutabilityPolicyExpiry);
return FluxUtil.withContext(
context ->
service.startCopyFromURLNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
timeout,
metadata,
tier,
rehydratePriority,
sourceIfModifiedSinceConverted,
sourceIfUnmodifiedSinceConverted,
sourceIfMatch,
sourceIfNoneMatch,
sourceIfTags,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
copySource,
leaseId,
this.client.getVersion(),
requestId,
blobTagsString,
sealBlob,
immutabilityPolicyExpiryConverted,
immutabilityPolicyMode,
legalHold,
accept,
context));
}
/**
* The Start Copy From URL operation copies a blob or an internet resource to a new blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in
* length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request
* URI. The source blob must either be public or must be authenticated via a shared access signature.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param tier Optional. Indicates the tier to be set on the blob.
* @param rehydratePriority Optional: Indicates the priority with which to rehydrate an archived blob.
* @param sourceIfModifiedSince Specify this header value to operate only on a blob if it has been modified since
* the specified date/time.
* @param sourceIfUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified
* since the specified date/time.
* @param sourceIfMatch Specify an ETag value to operate only on blobs with a matching value.
* @param sourceIfNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param sourceIfTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param blobTagsString Optional. Used to set blob tags in various blob operations.
* @param sealBlob Overrides the sealed state of the destination blob. Service version 2019-12-12 and newer.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> startCopyFromURLNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String copySource,
Integer timeout,
Map metadata,
AccessTier tier,
RehydratePriority rehydratePriority,
OffsetDateTime sourceIfModifiedSince,
OffsetDateTime sourceIfUnmodifiedSince,
String sourceIfMatch,
String sourceIfNoneMatch,
String sourceIfTags,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
String blobTagsString,
Boolean sealBlob,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Boolean legalHold,
Context context) {
final String accept = "application/xml";
DateTimeRfc1123 sourceIfModifiedSinceConverted =
sourceIfModifiedSince == null ? null : new DateTimeRfc1123(sourceIfModifiedSince);
DateTimeRfc1123 sourceIfUnmodifiedSinceConverted =
sourceIfUnmodifiedSince == null ? null : new DateTimeRfc1123(sourceIfUnmodifiedSince);
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
DateTimeRfc1123 immutabilityPolicyExpiryConverted =
immutabilityPolicyExpiry == null ? null : new DateTimeRfc1123(immutabilityPolicyExpiry);
return service.startCopyFromURLNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
timeout,
metadata,
tier,
rehydratePriority,
sourceIfModifiedSinceConverted,
sourceIfUnmodifiedSinceConverted,
sourceIfMatch,
sourceIfNoneMatch,
sourceIfTags,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
copySource,
leaseId,
this.client.getVersion(),
requestId,
blobTagsString,
sealBlob,
immutabilityPolicyExpiryConverted,
immutabilityPolicyMode,
legalHold,
accept,
context);
}
/**
* The Copy From URL operation copies a blob or an internet resource to a new blob. It will not return a response
* until the copy is complete.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in
* length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request
* URI. The source blob must either be public or must be authenticated via a shared access signature.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param tier Optional. Indicates the tier to be set on the blob.
* @param sourceIfModifiedSince Specify this header value to operate only on a blob if it has been modified since
* the specified date/time.
* @param sourceIfUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified
* since the specified date/time.
* @param sourceIfMatch Specify an ETag value to operate only on blobs with a matching value.
* @param sourceIfNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param sourceContentMD5 Specify the md5 calculated for the range of bytes that must be read from the copy source.
* @param blobTagsString Optional. Used to set blob tags in various blob operations.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param copySourceAuthorization Only Bearer type is supported. Credentials should be a valid OAuth access token to
* copy source.
* @param copySourceTags Optional, default 'replace'. Indicates if source tags should be copied or replaced with the
* tags specified by x-ms-tags.
* @param encryptionScopeParam Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> copyFromURLWithResponseAsync(
String containerName,
String blob,
String copySource,
Integer timeout,
Map metadata,
AccessTier tier,
OffsetDateTime sourceIfModifiedSince,
OffsetDateTime sourceIfUnmodifiedSince,
String sourceIfMatch,
String sourceIfNoneMatch,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
byte[] sourceContentMD5,
String blobTagsString,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Boolean legalHold,
String copySourceAuthorization,
BlobCopySourceTagsMode copySourceTags,
EncryptionScope encryptionScopeParam) {
final String xMsRequiresSync = "true";
final String accept = "application/xml";
String encryptionScopeInternal = null;
if (encryptionScopeParam != null) {
encryptionScopeInternal = encryptionScopeParam.getEncryptionScope();
}
String encryptionScope = encryptionScopeInternal;
DateTimeRfc1123 sourceIfModifiedSinceConverted =
sourceIfModifiedSince == null ? null : new DateTimeRfc1123(sourceIfModifiedSince);
DateTimeRfc1123 sourceIfUnmodifiedSinceConverted =
sourceIfUnmodifiedSince == null ? null : new DateTimeRfc1123(sourceIfUnmodifiedSince);
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
String sourceContentMD5Converted = Base64Util.encodeToString(sourceContentMD5);
DateTimeRfc1123 immutabilityPolicyExpiryConverted =
immutabilityPolicyExpiry == null ? null : new DateTimeRfc1123(immutabilityPolicyExpiry);
return FluxUtil.withContext(
context ->
service.copyFromURL(
this.client.getUrl(),
containerName,
blob,
xMsRequiresSync,
timeout,
metadata,
tier,
sourceIfModifiedSinceConverted,
sourceIfUnmodifiedSinceConverted,
sourceIfMatch,
sourceIfNoneMatch,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
copySource,
leaseId,
this.client.getVersion(),
requestId,
sourceContentMD5Converted,
blobTagsString,
immutabilityPolicyExpiryConverted,
immutabilityPolicyMode,
legalHold,
copySourceAuthorization,
encryptionScope,
copySourceTags,
accept,
context));
}
/**
* The Copy From URL operation copies a blob or an internet resource to a new blob. It will not return a response
* until the copy is complete.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in
* length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request
* URI. The source blob must either be public or must be authenticated via a shared access signature.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param tier Optional. Indicates the tier to be set on the blob.
* @param sourceIfModifiedSince Specify this header value to operate only on a blob if it has been modified since
* the specified date/time.
* @param sourceIfUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified
* since the specified date/time.
* @param sourceIfMatch Specify an ETag value to operate only on blobs with a matching value.
* @param sourceIfNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param sourceContentMD5 Specify the md5 calculated for the range of bytes that must be read from the copy source.
* @param blobTagsString Optional. Used to set blob tags in various blob operations.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param copySourceAuthorization Only Bearer type is supported. Credentials should be a valid OAuth access token to
* copy source.
* @param copySourceTags Optional, default 'replace'. Indicates if source tags should be copied or replaced with the
* tags specified by x-ms-tags.
* @param encryptionScopeParam Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> copyFromURLWithResponseAsync(
String containerName,
String blob,
String copySource,
Integer timeout,
Map metadata,
AccessTier tier,
OffsetDateTime sourceIfModifiedSince,
OffsetDateTime sourceIfUnmodifiedSince,
String sourceIfMatch,
String sourceIfNoneMatch,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
byte[] sourceContentMD5,
String blobTagsString,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Boolean legalHold,
String copySourceAuthorization,
BlobCopySourceTagsMode copySourceTags,
EncryptionScope encryptionScopeParam,
Context context) {
final String xMsRequiresSync = "true";
final String accept = "application/xml";
String encryptionScopeInternal = null;
if (encryptionScopeParam != null) {
encryptionScopeInternal = encryptionScopeParam.getEncryptionScope();
}
String encryptionScope = encryptionScopeInternal;
DateTimeRfc1123 sourceIfModifiedSinceConverted =
sourceIfModifiedSince == null ? null : new DateTimeRfc1123(sourceIfModifiedSince);
DateTimeRfc1123 sourceIfUnmodifiedSinceConverted =
sourceIfUnmodifiedSince == null ? null : new DateTimeRfc1123(sourceIfUnmodifiedSince);
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
String sourceContentMD5Converted = Base64Util.encodeToString(sourceContentMD5);
DateTimeRfc1123 immutabilityPolicyExpiryConverted =
immutabilityPolicyExpiry == null ? null : new DateTimeRfc1123(immutabilityPolicyExpiry);
return service.copyFromURL(
this.client.getUrl(),
containerName,
blob,
xMsRequiresSync,
timeout,
metadata,
tier,
sourceIfModifiedSinceConverted,
sourceIfUnmodifiedSinceConverted,
sourceIfMatch,
sourceIfNoneMatch,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
copySource,
leaseId,
this.client.getVersion(),
requestId,
sourceContentMD5Converted,
blobTagsString,
immutabilityPolicyExpiryConverted,
immutabilityPolicyMode,
legalHold,
copySourceAuthorization,
encryptionScope,
copySourceTags,
accept,
context);
}
/**
* The Copy From URL operation copies a blob or an internet resource to a new blob. It will not return a response
* until the copy is complete.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in
* length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request
* URI. The source blob must either be public or must be authenticated via a shared access signature.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param tier Optional. Indicates the tier to be set on the blob.
* @param sourceIfModifiedSince Specify this header value to operate only on a blob if it has been modified since
* the specified date/time.
* @param sourceIfUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified
* since the specified date/time.
* @param sourceIfMatch Specify an ETag value to operate only on blobs with a matching value.
* @param sourceIfNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param sourceContentMD5 Specify the md5 calculated for the range of bytes that must be read from the copy source.
* @param blobTagsString Optional. Used to set blob tags in various blob operations.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param copySourceAuthorization Only Bearer type is supported. Credentials should be a valid OAuth access token to
* copy source.
* @param copySourceTags Optional, default 'replace'. Indicates if source tags should be copied or replaced with the
* tags specified by x-ms-tags.
* @param encryptionScopeParam Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono copyFromURLAsync(
String containerName,
String blob,
String copySource,
Integer timeout,
Map metadata,
AccessTier tier,
OffsetDateTime sourceIfModifiedSince,
OffsetDateTime sourceIfUnmodifiedSince,
String sourceIfMatch,
String sourceIfNoneMatch,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
byte[] sourceContentMD5,
String blobTagsString,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Boolean legalHold,
String copySourceAuthorization,
BlobCopySourceTagsMode copySourceTags,
EncryptionScope encryptionScopeParam) {
return copyFromURLWithResponseAsync(
containerName,
blob,
copySource,
timeout,
metadata,
tier,
sourceIfModifiedSince,
sourceIfUnmodifiedSince,
sourceIfMatch,
sourceIfNoneMatch,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
leaseId,
requestId,
sourceContentMD5,
blobTagsString,
immutabilityPolicyExpiry,
immutabilityPolicyMode,
legalHold,
copySourceAuthorization,
copySourceTags,
encryptionScopeParam)
.flatMap(ignored -> Mono.empty());
}
/**
* The Copy From URL operation copies a blob or an internet resource to a new blob. It will not return a response
* until the copy is complete.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in
* length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request
* URI. The source blob must either be public or must be authenticated via a shared access signature.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param tier Optional. Indicates the tier to be set on the blob.
* @param sourceIfModifiedSince Specify this header value to operate only on a blob if it has been modified since
* the specified date/time.
* @param sourceIfUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified
* since the specified date/time.
* @param sourceIfMatch Specify an ETag value to operate only on blobs with a matching value.
* @param sourceIfNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param sourceContentMD5 Specify the md5 calculated for the range of bytes that must be read from the copy source.
* @param blobTagsString Optional. Used to set blob tags in various blob operations.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param copySourceAuthorization Only Bearer type is supported. Credentials should be a valid OAuth access token to
* copy source.
* @param copySourceTags Optional, default 'replace'. Indicates if source tags should be copied or replaced with the
* tags specified by x-ms-tags.
* @param encryptionScopeParam Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono copyFromURLAsync(
String containerName,
String blob,
String copySource,
Integer timeout,
Map metadata,
AccessTier tier,
OffsetDateTime sourceIfModifiedSince,
OffsetDateTime sourceIfUnmodifiedSince,
String sourceIfMatch,
String sourceIfNoneMatch,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
byte[] sourceContentMD5,
String blobTagsString,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Boolean legalHold,
String copySourceAuthorization,
BlobCopySourceTagsMode copySourceTags,
EncryptionScope encryptionScopeParam,
Context context) {
return copyFromURLWithResponseAsync(
containerName,
blob,
copySource,
timeout,
metadata,
tier,
sourceIfModifiedSince,
sourceIfUnmodifiedSince,
sourceIfMatch,
sourceIfNoneMatch,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
leaseId,
requestId,
sourceContentMD5,
blobTagsString,
immutabilityPolicyExpiry,
immutabilityPolicyMode,
legalHold,
copySourceAuthorization,
copySourceTags,
encryptionScopeParam,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* The Copy From URL operation copies a blob or an internet resource to a new blob. It will not return a response
* until the copy is complete.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in
* length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request
* URI. The source blob must either be public or must be authenticated via a shared access signature.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param tier Optional. Indicates the tier to be set on the blob.
* @param sourceIfModifiedSince Specify this header value to operate only on a blob if it has been modified since
* the specified date/time.
* @param sourceIfUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified
* since the specified date/time.
* @param sourceIfMatch Specify an ETag value to operate only on blobs with a matching value.
* @param sourceIfNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param sourceContentMD5 Specify the md5 calculated for the range of bytes that must be read from the copy source.
* @param blobTagsString Optional. Used to set blob tags in various blob operations.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param copySourceAuthorization Only Bearer type is supported. Credentials should be a valid OAuth access token to
* copy source.
* @param copySourceTags Optional, default 'replace'. Indicates if source tags should be copied or replaced with the
* tags specified by x-ms-tags.
* @param encryptionScopeParam Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> copyFromURLNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String copySource,
Integer timeout,
Map metadata,
AccessTier tier,
OffsetDateTime sourceIfModifiedSince,
OffsetDateTime sourceIfUnmodifiedSince,
String sourceIfMatch,
String sourceIfNoneMatch,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
byte[] sourceContentMD5,
String blobTagsString,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Boolean legalHold,
String copySourceAuthorization,
BlobCopySourceTagsMode copySourceTags,
EncryptionScope encryptionScopeParam) {
final String xMsRequiresSync = "true";
final String accept = "application/xml";
String encryptionScopeInternal = null;
if (encryptionScopeParam != null) {
encryptionScopeInternal = encryptionScopeParam.getEncryptionScope();
}
String encryptionScope = encryptionScopeInternal;
DateTimeRfc1123 sourceIfModifiedSinceConverted =
sourceIfModifiedSince == null ? null : new DateTimeRfc1123(sourceIfModifiedSince);
DateTimeRfc1123 sourceIfUnmodifiedSinceConverted =
sourceIfUnmodifiedSince == null ? null : new DateTimeRfc1123(sourceIfUnmodifiedSince);
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
String sourceContentMD5Converted = Base64Util.encodeToString(sourceContentMD5);
DateTimeRfc1123 immutabilityPolicyExpiryConverted =
immutabilityPolicyExpiry == null ? null : new DateTimeRfc1123(immutabilityPolicyExpiry);
return FluxUtil.withContext(
context ->
service.copyFromURLNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
xMsRequiresSync,
timeout,
metadata,
tier,
sourceIfModifiedSinceConverted,
sourceIfUnmodifiedSinceConverted,
sourceIfMatch,
sourceIfNoneMatch,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
copySource,
leaseId,
this.client.getVersion(),
requestId,
sourceContentMD5Converted,
blobTagsString,
immutabilityPolicyExpiryConverted,
immutabilityPolicyMode,
legalHold,
copySourceAuthorization,
encryptionScope,
copySourceTags,
accept,
context));
}
/**
* The Copy From URL operation copies a blob or an internet resource to a new blob. It will not return a response
* until the copy is complete.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copySource Specifies the name of the source page blob snapshot. This value is a URL of up to 2 KB in
* length that specifies a page blob snapshot. The value should be URL-encoded as it would appear in a request
* URI. The source blob must either be public or must be authenticated via a shared access signature.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param metadata Optional. Specifies a user-defined name-value pair associated with the blob. If no name-value
* pairs are specified, the operation will copy the metadata from the source blob or file to the destination
* blob. If one or more name-value pairs are specified, the destination blob is created with the specified
* metadata, and metadata is not copied from the source blob or file. Note that beginning with version
* 2009-09-19, metadata names must adhere to the naming rules for C# identifiers. See Naming and Referencing
* Containers, Blobs, and Metadata for more information.
* @param tier Optional. Indicates the tier to be set on the blob.
* @param sourceIfModifiedSince Specify this header value to operate only on a blob if it has been modified since
* the specified date/time.
* @param sourceIfUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified
* since the specified date/time.
* @param sourceIfMatch Specify an ETag value to operate only on blobs with a matching value.
* @param sourceIfNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param sourceContentMD5 Specify the md5 calculated for the range of bytes that must be read from the copy source.
* @param blobTagsString Optional. Used to set blob tags in various blob operations.
* @param immutabilityPolicyExpiry Specifies the date time when the blobs immutability policy is set to expire.
* @param immutabilityPolicyMode Specifies the immutability policy mode to set on the blob.
* @param legalHold Specified if a legal hold should be set on the blob.
* @param copySourceAuthorization Only Bearer type is supported. Credentials should be a valid OAuth access token to
* copy source.
* @param copySourceTags Optional, default 'replace'. Indicates if source tags should be copied or replaced with the
* tags specified by x-ms-tags.
* @param encryptionScopeParam Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> copyFromURLNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String copySource,
Integer timeout,
Map metadata,
AccessTier tier,
OffsetDateTime sourceIfModifiedSince,
OffsetDateTime sourceIfUnmodifiedSince,
String sourceIfMatch,
String sourceIfNoneMatch,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String leaseId,
String requestId,
byte[] sourceContentMD5,
String blobTagsString,
OffsetDateTime immutabilityPolicyExpiry,
BlobImmutabilityPolicyMode immutabilityPolicyMode,
Boolean legalHold,
String copySourceAuthorization,
BlobCopySourceTagsMode copySourceTags,
EncryptionScope encryptionScopeParam,
Context context) {
final String xMsRequiresSync = "true";
final String accept = "application/xml";
String encryptionScopeInternal = null;
if (encryptionScopeParam != null) {
encryptionScopeInternal = encryptionScopeParam.getEncryptionScope();
}
String encryptionScope = encryptionScopeInternal;
DateTimeRfc1123 sourceIfModifiedSinceConverted =
sourceIfModifiedSince == null ? null : new DateTimeRfc1123(sourceIfModifiedSince);
DateTimeRfc1123 sourceIfUnmodifiedSinceConverted =
sourceIfUnmodifiedSince == null ? null : new DateTimeRfc1123(sourceIfUnmodifiedSince);
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
String sourceContentMD5Converted = Base64Util.encodeToString(sourceContentMD5);
DateTimeRfc1123 immutabilityPolicyExpiryConverted =
immutabilityPolicyExpiry == null ? null : new DateTimeRfc1123(immutabilityPolicyExpiry);
return service.copyFromURLNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
xMsRequiresSync,
timeout,
metadata,
tier,
sourceIfModifiedSinceConverted,
sourceIfUnmodifiedSinceConverted,
sourceIfMatch,
sourceIfNoneMatch,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
copySource,
leaseId,
this.client.getVersion(),
requestId,
sourceContentMD5Converted,
blobTagsString,
immutabilityPolicyExpiryConverted,
immutabilityPolicyMode,
legalHold,
copySourceAuthorization,
encryptionScope,
copySourceTags,
accept,
context);
}
/**
* The Abort Copy From URL operation aborts a pending Copy From URL operation, and leaves a destination blob with
* zero length and full metadata.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copyId The copy identifier provided in the x-ms-copy-id header of the original Copy Blob operation.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> abortCopyFromURLWithResponseAsync(
String containerName, String blob, String copyId, Integer timeout, String leaseId, String requestId) {
final String comp = "copy";
final String copyActionAbortConstant = "abort";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.abortCopyFromURL(
this.client.getUrl(),
containerName,
blob,
comp,
copyActionAbortConstant,
copyId,
timeout,
leaseId,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Abort Copy From URL operation aborts a pending Copy From URL operation, and leaves a destination blob with
* zero length and full metadata.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copyId The copy identifier provided in the x-ms-copy-id header of the original Copy Blob operation.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> abortCopyFromURLWithResponseAsync(
String containerName,
String blob,
String copyId,
Integer timeout,
String leaseId,
String requestId,
Context context) {
final String comp = "copy";
final String copyActionAbortConstant = "abort";
final String accept = "application/xml";
return service.abortCopyFromURL(
this.client.getUrl(),
containerName,
blob,
comp,
copyActionAbortConstant,
copyId,
timeout,
leaseId,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Abort Copy From URL operation aborts a pending Copy From URL operation, and leaves a destination blob with
* zero length and full metadata.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copyId The copy identifier provided in the x-ms-copy-id header of the original Copy Blob operation.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono abortCopyFromURLAsync(
String containerName, String blob, String copyId, Integer timeout, String leaseId, String requestId) {
return abortCopyFromURLWithResponseAsync(containerName, blob, copyId, timeout, leaseId, requestId)
.flatMap(ignored -> Mono.empty());
}
/**
* The Abort Copy From URL operation aborts a pending Copy From URL operation, and leaves a destination blob with
* zero length and full metadata.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copyId The copy identifier provided in the x-ms-copy-id header of the original Copy Blob operation.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono abortCopyFromURLAsync(
String containerName,
String blob,
String copyId,
Integer timeout,
String leaseId,
String requestId,
Context context) {
return abortCopyFromURLWithResponseAsync(containerName, blob, copyId, timeout, leaseId, requestId, context)
.flatMap(ignored -> Mono.empty());
}
/**
* The Abort Copy From URL operation aborts a pending Copy From URL operation, and leaves a destination blob with
* zero length and full metadata.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copyId The copy identifier provided in the x-ms-copy-id header of the original Copy Blob operation.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> abortCopyFromURLNoCustomHeadersWithResponseAsync(
String containerName, String blob, String copyId, Integer timeout, String leaseId, String requestId) {
final String comp = "copy";
final String copyActionAbortConstant = "abort";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.abortCopyFromURLNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
copyActionAbortConstant,
copyId,
timeout,
leaseId,
this.client.getVersion(),
requestId,
accept,
context));
}
/**
* The Abort Copy From URL operation aborts a pending Copy From URL operation, and leaves a destination blob with
* zero length and full metadata.
*
* @param containerName The container name.
* @param blob The blob name.
* @param copyId The copy identifier provided in the x-ms-copy-id header of the original Copy Blob operation.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> abortCopyFromURLNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String copyId,
Integer timeout,
String leaseId,
String requestId,
Context context) {
final String comp = "copy";
final String copyActionAbortConstant = "abort";
final String accept = "application/xml";
return service.abortCopyFromURLNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
copyActionAbortConstant,
copyId,
timeout,
leaseId,
this.client.getVersion(),
requestId,
accept,
context);
}
/**
* The Set Tier operation sets the tier on a blob. The operation is allowed on a page blob in a premium storage
* account and on a block blob in a blob storage account (locally redundant storage only). A premium page blob's
* tier determines the allowed size, IOPS, and bandwidth of the blob. A block blob's tier determines
* Hot/Cool/Archive storage type. This operation does not update the blob's ETag.
*
* @param containerName The container name.
* @param blob The blob name.
* @param tier Indicates the tier to be set on the blob.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param rehydratePriority Optional: Indicates the priority with which to rehydrate an archived blob.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setTierWithResponseAsync(
String containerName,
String blob,
AccessTier tier,
String snapshot,
String versionId,
Integer timeout,
RehydratePriority rehydratePriority,
String requestId,
String leaseId,
String ifTags) {
final String comp = "tier";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.setTier(
this.client.getUrl(),
containerName,
blob,
comp,
snapshot,
versionId,
timeout,
tier,
rehydratePriority,
this.client.getVersion(),
requestId,
leaseId,
ifTags,
accept,
context));
}
/**
* The Set Tier operation sets the tier on a blob. The operation is allowed on a page blob in a premium storage
* account and on a block blob in a blob storage account (locally redundant storage only). A premium page blob's
* tier determines the allowed size, IOPS, and bandwidth of the blob. A block blob's tier determines
* Hot/Cool/Archive storage type. This operation does not update the blob's ETag.
*
* @param containerName The container name.
* @param blob The blob name.
* @param tier Indicates the tier to be set on the blob.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param rehydratePriority Optional: Indicates the priority with which to rehydrate an archived blob.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setTierWithResponseAsync(
String containerName,
String blob,
AccessTier tier,
String snapshot,
String versionId,
Integer timeout,
RehydratePriority rehydratePriority,
String requestId,
String leaseId,
String ifTags,
Context context) {
final String comp = "tier";
final String accept = "application/xml";
return service.setTier(
this.client.getUrl(),
containerName,
blob,
comp,
snapshot,
versionId,
timeout,
tier,
rehydratePriority,
this.client.getVersion(),
requestId,
leaseId,
ifTags,
accept,
context);
}
/**
* The Set Tier operation sets the tier on a blob. The operation is allowed on a page blob in a premium storage
* account and on a block blob in a blob storage account (locally redundant storage only). A premium page blob's
* tier determines the allowed size, IOPS, and bandwidth of the blob. A block blob's tier determines
* Hot/Cool/Archive storage type. This operation does not update the blob's ETag.
*
* @param containerName The container name.
* @param blob The blob name.
* @param tier Indicates the tier to be set on the blob.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param rehydratePriority Optional: Indicates the priority with which to rehydrate an archived blob.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setTierAsync(
String containerName,
String blob,
AccessTier tier,
String snapshot,
String versionId,
Integer timeout,
RehydratePriority rehydratePriority,
String requestId,
String leaseId,
String ifTags) {
return setTierWithResponseAsync(
containerName,
blob,
tier,
snapshot,
versionId,
timeout,
rehydratePriority,
requestId,
leaseId,
ifTags)
.flatMap(ignored -> Mono.empty());
}
/**
* The Set Tier operation sets the tier on a blob. The operation is allowed on a page blob in a premium storage
* account and on a block blob in a blob storage account (locally redundant storage only). A premium page blob's
* tier determines the allowed size, IOPS, and bandwidth of the blob. A block blob's tier determines
* Hot/Cool/Archive storage type. This operation does not update the blob's ETag.
*
* @param containerName The container name.
* @param blob The blob name.
* @param tier Indicates the tier to be set on the blob.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param rehydratePriority Optional: Indicates the priority with which to rehydrate an archived blob.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setTierAsync(
String containerName,
String blob,
AccessTier tier,
String snapshot,
String versionId,
Integer timeout,
RehydratePriority rehydratePriority,
String requestId,
String leaseId,
String ifTags,
Context context) {
return setTierWithResponseAsync(
containerName,
blob,
tier,
snapshot,
versionId,
timeout,
rehydratePriority,
requestId,
leaseId,
ifTags,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* The Set Tier operation sets the tier on a blob. The operation is allowed on a page blob in a premium storage
* account and on a block blob in a blob storage account (locally redundant storage only). A premium page blob's
* tier determines the allowed size, IOPS, and bandwidth of the blob. A block blob's tier determines
* Hot/Cool/Archive storage type. This operation does not update the blob's ETag.
*
* @param containerName The container name.
* @param blob The blob name.
* @param tier Indicates the tier to be set on the blob.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param rehydratePriority Optional: Indicates the priority with which to rehydrate an archived blob.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setTierNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
AccessTier tier,
String snapshot,
String versionId,
Integer timeout,
RehydratePriority rehydratePriority,
String requestId,
String leaseId,
String ifTags) {
final String comp = "tier";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.setTierNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
snapshot,
versionId,
timeout,
tier,
rehydratePriority,
this.client.getVersion(),
requestId,
leaseId,
ifTags,
accept,
context));
}
/**
* The Set Tier operation sets the tier on a blob. The operation is allowed on a page blob in a premium storage
* account and on a block blob in a blob storage account (locally redundant storage only). A premium page blob's
* tier determines the allowed size, IOPS, and bandwidth of the blob. A block blob's tier determines
* Hot/Cool/Archive storage type. This operation does not update the blob's ETag.
*
* @param containerName The container name.
* @param blob The blob name.
* @param tier Indicates the tier to be set on the blob.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param rehydratePriority Optional: Indicates the priority with which to rehydrate an archived blob.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setTierNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
AccessTier tier,
String snapshot,
String versionId,
Integer timeout,
RehydratePriority rehydratePriority,
String requestId,
String leaseId,
String ifTags,
Context context) {
final String comp = "tier";
final String accept = "application/xml";
return service.setTierNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
snapshot,
versionId,
timeout,
tier,
rehydratePriority,
this.client.getVersion(),
requestId,
leaseId,
ifTags,
accept,
context);
}
/**
* Returns the sku name and account kind.
*
* @param containerName The container name.
* @param blob The blob name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getAccountInfoWithResponseAsync(
String containerName, String blob) {
final String restype = "account";
final String comp = "properties";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.getAccountInfo(
this.client.getUrl(),
containerName,
blob,
restype,
comp,
this.client.getVersion(),
accept,
context));
}
/**
* Returns the sku name and account kind.
*
* @param containerName The container name.
* @param blob The blob name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getAccountInfoWithResponseAsync(
String containerName, String blob, Context context) {
final String restype = "account";
final String comp = "properties";
final String accept = "application/xml";
return service.getAccountInfo(
this.client.getUrl(), containerName, blob, restype, comp, this.client.getVersion(), accept, context);
}
/**
* Returns the sku name and account kind.
*
* @param containerName The container name.
* @param blob The blob name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getAccountInfoAsync(String containerName, String blob) {
return getAccountInfoWithResponseAsync(containerName, blob).flatMap(ignored -> Mono.empty());
}
/**
* Returns the sku name and account kind.
*
* @param containerName The container name.
* @param blob The blob name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getAccountInfoAsync(String containerName, String blob, Context context) {
return getAccountInfoWithResponseAsync(containerName, blob, context).flatMap(ignored -> Mono.empty());
}
/**
* Returns the sku name and account kind.
*
* @param containerName The container name.
* @param blob The blob name.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getAccountInfoNoCustomHeadersWithResponseAsync(String containerName, String blob) {
final String restype = "account";
final String comp = "properties";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.getAccountInfoNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
restype,
comp,
this.client.getVersion(),
accept,
context));
}
/**
* Returns the sku name and account kind.
*
* @param containerName The container name.
* @param blob The blob name.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getAccountInfoNoCustomHeadersWithResponseAsync(
String containerName, String blob, Context context) {
final String restype = "account";
final String comp = "properties";
final String accept = "application/xml";
return service.getAccountInfoNoCustomHeaders(
this.client.getUrl(), containerName, blob, restype, comp, this.client.getVersion(), accept, context);
}
/**
* The Query operation enables users to select/project on blob data by providing simple query expressions.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param queryRequest the query request.
* @param cpkInfo Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono>> queryWithResponseAsync(
String containerName,
String blob,
String snapshot,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
QueryRequest queryRequest,
CpkInfo cpkInfo) {
final String comp = "query";
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.query(
this.client.getUrl(),
containerName,
blob,
comp,
snapshot,
timeout,
leaseId,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
queryRequest,
accept,
context));
}
/**
* The Query operation enables users to select/project on blob data by providing simple query expressions.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param queryRequest the query request.
* @param cpkInfo Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body along with {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono>> queryWithResponseAsync(
String containerName,
String blob,
String snapshot,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
QueryRequest queryRequest,
CpkInfo cpkInfo,
Context context) {
final String comp = "query";
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.query(
this.client.getUrl(),
containerName,
blob,
comp,
snapshot,
timeout,
leaseId,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
queryRequest,
accept,
context);
}
/**
* The Query operation enables users to select/project on blob data by providing simple query expressions.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param queryRequest the query request.
* @param cpkInfo Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Flux queryAsync(
String containerName,
String blob,
String snapshot,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
QueryRequest queryRequest,
CpkInfo cpkInfo) {
return queryWithResponseAsync(
containerName,
blob,
snapshot,
timeout,
leaseId,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
queryRequest,
cpkInfo)
.flatMapMany(fluxByteBufferResponse -> fluxByteBufferResponse.getValue());
}
/**
* The Query operation enables users to select/project on blob data by providing simple query expressions.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param queryRequest the query request.
* @param cpkInfo Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Flux queryAsync(
String containerName,
String blob,
String snapshot,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
QueryRequest queryRequest,
CpkInfo cpkInfo,
Context context) {
return queryWithResponseAsync(
containerName,
blob,
snapshot,
timeout,
leaseId,
ifModifiedSince,
ifUnmodifiedSince,
ifMatch,
ifNoneMatch,
ifTags,
requestId,
queryRequest,
cpkInfo,
context)
.flatMapMany(fluxByteBufferResponse -> fluxByteBufferResponse.getValue());
}
/**
* The Query operation enables users to select/project on blob data by providing simple query expressions.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param queryRequest the query request.
* @param cpkInfo Parameter group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono queryNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String snapshot,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
QueryRequest queryRequest,
CpkInfo cpkInfo) {
final String comp = "query";
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return FluxUtil.withContext(
context ->
service.queryNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
snapshot,
timeout,
leaseId,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
queryRequest,
accept,
context));
}
/**
* The Query operation enables users to select/project on blob data by providing simple query expressions.
*
* @param containerName The container name.
* @param blob The blob name.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param ifModifiedSince Specify this header value to operate only on a blob if it has been modified since the
* specified date/time.
* @param ifUnmodifiedSince Specify this header value to operate only on a blob if it has not been modified since
* the specified date/time.
* @param ifMatch Specify an ETag value to operate only on blobs with a matching value.
* @param ifNoneMatch Specify an ETag value to operate only on blobs without a matching value.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param queryRequest the query request.
* @param cpkInfo Parameter group.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the response body on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono queryNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
String snapshot,
Integer timeout,
String leaseId,
OffsetDateTime ifModifiedSince,
OffsetDateTime ifUnmodifiedSince,
String ifMatch,
String ifNoneMatch,
String ifTags,
String requestId,
QueryRequest queryRequest,
CpkInfo cpkInfo,
Context context) {
final String comp = "query";
final String accept = "application/xml";
String encryptionKeyInternal = null;
if (cpkInfo != null) {
encryptionKeyInternal = cpkInfo.getEncryptionKey();
}
String encryptionKey = encryptionKeyInternal;
String encryptionKeySha256Internal = null;
if (cpkInfo != null) {
encryptionKeySha256Internal = cpkInfo.getEncryptionKeySha256();
}
String encryptionKeySha256 = encryptionKeySha256Internal;
EncryptionAlgorithmType encryptionAlgorithmInternal = null;
if (cpkInfo != null) {
encryptionAlgorithmInternal = cpkInfo.getEncryptionAlgorithm();
}
EncryptionAlgorithmType encryptionAlgorithm = encryptionAlgorithmInternal;
DateTimeRfc1123 ifModifiedSinceConverted =
ifModifiedSince == null ? null : new DateTimeRfc1123(ifModifiedSince);
DateTimeRfc1123 ifUnmodifiedSinceConverted =
ifUnmodifiedSince == null ? null : new DateTimeRfc1123(ifUnmodifiedSince);
return service.queryNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
snapshot,
timeout,
leaseId,
encryptionKey,
encryptionKeySha256,
encryptionAlgorithm,
ifModifiedSinceConverted,
ifUnmodifiedSinceConverted,
ifMatch,
ifNoneMatch,
ifTags,
this.client.getVersion(),
requestId,
queryRequest,
accept,
context);
}
/**
* The Get Tags operation enables users to get the tags associated with a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return blob tags along with {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getTagsWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String requestId,
String snapshot,
String versionId,
String ifTags,
String leaseId) {
final String comp = "tags";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.getTags(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
snapshot,
versionId,
ifTags,
leaseId,
accept,
context));
}
/**
* The Get Tags operation enables users to get the tags associated with a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return blob tags along with {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getTagsWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String requestId,
String snapshot,
String versionId,
String ifTags,
String leaseId,
Context context) {
final String comp = "tags";
final String accept = "application/xml";
return service.getTags(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
snapshot,
versionId,
ifTags,
leaseId,
accept,
context);
}
/**
* The Get Tags operation enables users to get the tags associated with a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return blob tags on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getTagsAsync(
String containerName,
String blob,
Integer timeout,
String requestId,
String snapshot,
String versionId,
String ifTags,
String leaseId) {
return getTagsWithResponseAsync(containerName, blob, timeout, requestId, snapshot, versionId, ifTags, leaseId)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* The Get Tags operation enables users to get the tags associated with a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return blob tags on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getTagsAsync(
String containerName,
String blob,
Integer timeout,
String requestId,
String snapshot,
String versionId,
String ifTags,
String leaseId,
Context context) {
return getTagsWithResponseAsync(
containerName, blob, timeout, requestId, snapshot, versionId, ifTags, leaseId, context)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* The Get Tags operation enables users to get the tags associated with a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return blob tags along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getTagsNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String requestId,
String snapshot,
String versionId,
String ifTags,
String leaseId) {
final String comp = "tags";
final String accept = "application/xml";
return FluxUtil.withContext(
context ->
service.getTagsNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
snapshot,
versionId,
ifTags,
leaseId,
accept,
context));
}
/**
* The Get Tags operation enables users to get the tags associated with a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param snapshot The snapshot parameter is an opaque DateTime value that, when present, specifies the blob
* snapshot to retrieve. For more information on working with blob snapshots, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/creating-a-snapshot-of-a-blob">Creating
* a Snapshot of a Blob.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return blob tags along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getTagsNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String requestId,
String snapshot,
String versionId,
String ifTags,
String leaseId,
Context context) {
final String comp = "tags";
final String accept = "application/xml";
return service.getTagsNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
timeout,
this.client.getVersion(),
requestId,
snapshot,
versionId,
ifTags,
leaseId,
accept,
context);
}
/**
* The Set Tags operation enables users to set tags on a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param transactionalContentMD5 Specify the transactional md5 for the body, to be validated by the service.
* @param transactionalContentCrc64 Specify the transactional crc64 for the body, to be validated by the service.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param tags Blob tags.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setTagsWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String versionId,
byte[] transactionalContentMD5,
byte[] transactionalContentCrc64,
String requestId,
String ifTags,
String leaseId,
BlobTags tags) {
final String comp = "tags";
final String accept = "application/xml";
String transactionalContentMD5Converted = Base64Util.encodeToString(transactionalContentMD5);
String transactionalContentCrc64Converted = Base64Util.encodeToString(transactionalContentCrc64);
return FluxUtil.withContext(
context ->
service.setTags(
this.client.getUrl(),
containerName,
blob,
comp,
this.client.getVersion(),
timeout,
versionId,
transactionalContentMD5Converted,
transactionalContentCrc64Converted,
requestId,
ifTags,
leaseId,
tags,
accept,
context));
}
/**
* The Set Tags operation enables users to set tags on a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param transactionalContentMD5 Specify the transactional md5 for the body, to be validated by the service.
* @param transactionalContentCrc64 Specify the transactional crc64 for the body, to be validated by the service.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param tags Blob tags.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link ResponseBase} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setTagsWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String versionId,
byte[] transactionalContentMD5,
byte[] transactionalContentCrc64,
String requestId,
String ifTags,
String leaseId,
BlobTags tags,
Context context) {
final String comp = "tags";
final String accept = "application/xml";
String transactionalContentMD5Converted = Base64Util.encodeToString(transactionalContentMD5);
String transactionalContentCrc64Converted = Base64Util.encodeToString(transactionalContentCrc64);
return service.setTags(
this.client.getUrl(),
containerName,
blob,
comp,
this.client.getVersion(),
timeout,
versionId,
transactionalContentMD5Converted,
transactionalContentCrc64Converted,
requestId,
ifTags,
leaseId,
tags,
accept,
context);
}
/**
* The Set Tags operation enables users to set tags on a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param transactionalContentMD5 Specify the transactional md5 for the body, to be validated by the service.
* @param transactionalContentCrc64 Specify the transactional crc64 for the body, to be validated by the service.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param tags Blob tags.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setTagsAsync(
String containerName,
String blob,
Integer timeout,
String versionId,
byte[] transactionalContentMD5,
byte[] transactionalContentCrc64,
String requestId,
String ifTags,
String leaseId,
BlobTags tags) {
return setTagsWithResponseAsync(
containerName,
blob,
timeout,
versionId,
transactionalContentMD5,
transactionalContentCrc64,
requestId,
ifTags,
leaseId,
tags)
.flatMap(ignored -> Mono.empty());
}
/**
* The Set Tags operation enables users to set tags on a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param transactionalContentMD5 Specify the transactional md5 for the body, to be validated by the service.
* @param transactionalContentCrc64 Specify the transactional crc64 for the body, to be validated by the service.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param tags Blob tags.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono setTagsAsync(
String containerName,
String blob,
Integer timeout,
String versionId,
byte[] transactionalContentMD5,
byte[] transactionalContentCrc64,
String requestId,
String ifTags,
String leaseId,
BlobTags tags,
Context context) {
return setTagsWithResponseAsync(
containerName,
blob,
timeout,
versionId,
transactionalContentMD5,
transactionalContentCrc64,
requestId,
ifTags,
leaseId,
tags,
context)
.flatMap(ignored -> Mono.empty());
}
/**
* The Set Tags operation enables users to set tags on a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param transactionalContentMD5 Specify the transactional md5 for the body, to be validated by the service.
* @param transactionalContentCrc64 Specify the transactional crc64 for the body, to be validated by the service.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param tags Blob tags.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setTagsNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String versionId,
byte[] transactionalContentMD5,
byte[] transactionalContentCrc64,
String requestId,
String ifTags,
String leaseId,
BlobTags tags) {
final String comp = "tags";
final String accept = "application/xml";
String transactionalContentMD5Converted = Base64Util.encodeToString(transactionalContentMD5);
String transactionalContentCrc64Converted = Base64Util.encodeToString(transactionalContentCrc64);
return FluxUtil.withContext(
context ->
service.setTagsNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
this.client.getVersion(),
timeout,
versionId,
transactionalContentMD5Converted,
transactionalContentCrc64Converted,
requestId,
ifTags,
leaseId,
tags,
accept,
context));
}
/**
* The Set Tags operation enables users to set tags on a blob.
*
* @param containerName The container name.
* @param blob The blob name.
* @param timeout The timeout parameter is expressed in seconds. For more information, see <a
* href="https://docs.microsoft.com/en-us/rest/api/storageservices/fileservices/setting-timeouts-for-blob-service-operations">Setting
* Timeouts for Blob Service Operations.</a>.
* @param versionId The version id parameter is an opaque DateTime value that, when present, specifies the version
* of the blob to operate on. It's for service version 2019-10-10 and newer.
* @param transactionalContentMD5 Specify the transactional md5 for the body, to be validated by the service.
* @param transactionalContentCrc64 Specify the transactional crc64 for the body, to be validated by the service.
* @param requestId Provides a client-generated, opaque value with a 1 KB character limit that is recorded in the
* analytics logs when storage analytics logging is enabled.
* @param ifTags Specify a SQL where clause on blob tags to operate only on blobs with a matching value.
* @param leaseId If specified, the operation only succeeds if the resource's lease is active and matches this ID.
* @param tags Blob tags.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws BlobStorageException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> setTagsNoCustomHeadersWithResponseAsync(
String containerName,
String blob,
Integer timeout,
String versionId,
byte[] transactionalContentMD5,
byte[] transactionalContentCrc64,
String requestId,
String ifTags,
String leaseId,
BlobTags tags,
Context context) {
final String comp = "tags";
final String accept = "application/xml";
String transactionalContentMD5Converted = Base64Util.encodeToString(transactionalContentMD5);
String transactionalContentCrc64Converted = Base64Util.encodeToString(transactionalContentCrc64);
return service.setTagsNoCustomHeaders(
this.client.getUrl(),
containerName,
blob,
comp,
this.client.getVersion(),
timeout,
versionId,
transactionalContentMD5Converted,
transactionalContentCrc64Converted,
requestId,
ifTags,
leaseId,
tags,
accept,
context);
}
}