com.microsoft.azure.storage.blob.models.AppendBlobCreateResponse 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
The Azure Storage Java Blob library.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator
package com.microsoft.azure.storage.blob.models;
import com.microsoft.rest.v2.RestResponse;
import com.microsoft.rest.v2.http.HttpRequest;
import java.util.Map;
/**
* Contains all response data for the create operation.
*/
public final class AppendBlobCreateResponse extends RestResponse {
/**
* Creates an instance of AppendBlobCreateResponse.
*
* @param request the request which resulted in this {response.Name}.
* @param statusCode the status code of the HTTP response.
* @param headers the deserialized headers of the HTTP response.
* @param rawHeaders the raw headers of the HTTP response.
* @param body the deserialized body of the HTTP response.
*/
public AppendBlobCreateResponse(HttpRequest request, int statusCode, AppendBlobCreateHeaders headers, Map rawHeaders, Void body) {
super(request, statusCode, headers, rawHeaders, body);
}
/**
* @return the deserialized response headers.
*/
@Override
public AppendBlobCreateHeaders headers() {
return super.headers();
}
}