Show / Hide Table of Contents

Class CreateMultipartUploadDetails

To use any of the API operations, you must be authorized in an IAM policy. If you are not authorized, talk to an administrator. If you are an administrator who needs to write policies to give users access, see Getting Started with Policies.

Inheritance
object
CreateMultipartUploadDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ObjectstorageService.Models
Assembly: OCI.DotNetSDK.Objectstorage.dll
Syntax
public class CreateMultipartUploadDetails

Properties

CacheControl

Declaration
[JsonProperty(PropertyName = "cacheControl")]
public string CacheControl { get; set; }
Property Value
Type Description
string

The optional Cache-Control header that defines the caching behavior value to be returned in GetObject and HeadObject responses. Specifying values for this header has no effect on Object Storage behavior. Programs that read the object determine what to do based on the value provided. For example, you could use this header to identify objects that require caching restrictions.

ContentDisposition

Declaration
[JsonProperty(PropertyName = "contentDisposition")]
public string ContentDisposition { get; set; }
Property Value
Type Description
string

The optional Content-Disposition header that defines presentational information for the object to be returned in GetObject and HeadObject responses. Specifying values for this header has no effect on Object Storage behavior. Programs that read the object determine what to do based on the value provided. For example, you could use this header to let users download objects with custom filenames in a browser.

ContentEncoding

Declaration
[JsonProperty(PropertyName = "contentEncoding")]
public string ContentEncoding { get; set; }
Property Value
Type Description
string

The optional Content-Encoding header that defines the content encodings that were applied to the object to upload. Specifying values for this header has no effect on Object Storage behavior. Programs that read the object determine what to do based on the value provided. For example, you could use this header to determine what decoding mechanisms need to be applied to obtain the media-type specified by the Content-Type header of the object.

ContentLanguage

Declaration
[JsonProperty(PropertyName = "contentLanguage")]
public string ContentLanguage { get; set; }
Property Value
Type Description
string

The optional Content-Language header that defines the content language of the object to upload. Specifying values for this header has no effect on Object Storage behavior. Programs that read the object determine what to do based on the value provided. For example, you could use this header to identify and differentiate objects based on a particular language.

ContentType

Declaration
[JsonProperty(PropertyName = "contentType")]
public string ContentType { get; set; }
Property Value
Type Description
string

The optional Content-Type header that defines the standard MIME type format of the object to upload. Specifying values for this header has no effect on Object Storage behavior. Programs that read the object determine what to do based on the value provided. For example, you could use this header to identify and perform special operations on text only objects.

Metadata

Declaration
[JsonProperty(PropertyName = "metadata")]
public Dictionary<string, string> Metadata { get; set; }
Property Value
Type Description
Dictionary<string, string>

Arbitrary string keys and values for the user-defined metadata for the object. Keys must be in "opc-meta-*" format. Avoid entering confidential information.

Object

Declaration
[Required(ErrorMessage = "Object is required.")]
[JsonProperty(PropertyName = "object")]
public string Object { get; set; }
Property Value
Type Description
string

The name of the object to which this multi-part upload is targeted. Avoid entering confidential information. Example: test/object1.log

Remarks

Required

StorageTier

Declaration
[JsonProperty(PropertyName = "storageTier")]
[JsonConverter(typeof(StringEnumConverter))]
public StorageTier? StorageTier { get; set; }
Property Value
Type Description
StorageTier?

The storage tier that the object should be stored in. If not specified, the object will be stored in the same storage tier as the bucket.

In this article
Back to top