/** * * * OpenAPI spec version: 20160918 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ export interface CommitMultipartUploadResponse { /** * Echoes back the value passed in the opc-client-request-id header, for use by clients when debugging. */ "opcClientRequestId": string; /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular * request, provide this request ID. * */ "opcRequestId": string; /** * Base-64 representation of the multipart object MD5 hash. * The multipart object hash is calculated by taking the MD5 hashes of the parts passed to this call, * concatenating the binary representation of those hashes in order of their part numbers, * and then calculating the MD5 hash of the concatenated values. The multipart object hash is followed * by a hyphen and the total number of parts (for example, '-6'). * */ "opcMultipartMd5": string; /** * The base64-encoded, 32-bit CRC32C (Castagnoli) checksum of the object. * Even for objects uploaded using multipart upload, this header returns the CRC32C (Castagnoli) checksum * of the complete reconstructed object. * */ "opcContentCrc32c": string; /** * Base-64 representation of the multipart object SHA256 hash. * The multipart object hash is calculated by taking the SHA256 hashes of the parts passed to this call, * concatenating the binary representation of those hashes in order of their part numbers, * and then calculating the SHA256 hash of the concatenated values. The multipart object hash is followed * by a hyphen and the total number of parts (for example, '-6'). * */ "opcMultipartSha256": string; /** * Base-64 representation of the multipart object SHA384 hash. * The multipart object hash is calculated by taking the SHA384 hashes of the parts passed to this call, * concatenating the binary representation of those hashes in order of their part numbers, * and then calculating the SHA384 hash of the concatenated values. The multipart object hash is followed * by a hyphen and the total number of parts (for example, '-6'). * */ "opcMultipartSha384": string; /** * The entity tag (ETag) for the object. */ "eTag": string; /** * The time the object was last modified, as described in [RFC 2616](https://tools.ietf.org/html/rfc2616#section-14.29). */ "lastModified": Date; /** * VersionId of the newly created object */ "versionId": string; }