All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.storage.blob.models.PageBlobUploadPagesFromURLResponse Maven / Gradle / Ivy

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 uploadPagesFromURL operation.
 */
public final class PageBlobUploadPagesFromURLResponse extends RestResponse {
    /**
     * Creates an instance of PageBlobUploadPagesFromURLResponse.
     *
     * @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 PageBlobUploadPagesFromURLResponse(HttpRequest request, int statusCode, PageBlobUploadPagesFromURLHeaders headers, Map rawHeaders, Void body) {
        super(request, statusCode, headers, rawHeaders, body);
    }

    /**
     * @return the deserialized response headers.
     */
    @Override
    public PageBlobUploadPagesFromURLHeaders headers() {
        return super.headers();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy