Show / Hide Table of Contents

Class GetJobArtifactContentResponse

Inheritance
object
OciResponse
GetJobArtifactContentResponse
Implements
IOciResponse
Inherited Members
OciResponse.httpResponseMessage
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatascienceService.Responses
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class GetJobArtifactContentResponse : OciResponse, IOciResponse

Properties

ContentDisposition

Declaration
[HttpConverter(TargetEnum.Header, "content-disposition")]
public string ContentDisposition { get; set; }
Property Value
Type Description
string

The content disposition of the body, as described in RFC 2616, section 19.5.1.

ContentLength

Declaration
[HttpConverter(TargetEnum.Header, "content-length")]
public long? ContentLength { get; set; }
Property Value
Type Description
long?

The content size of the body in bytes.

ContentMd5

Declaration
[HttpConverter(TargetEnum.Header, "content-md5")]
public string ContentMd5 { get; set; }
Property Value
Type Description
string

The base-64 encoded MD5 hash of the body, as described in RFC 2616, section 14.15. Unavailable for objects uploaded using multipart upload. If the content-md5 header is present, Object Storage performs an integrity check on the body of the HTTP request by computing the MD5 hash for the body and comparing it to the MD5 hash supplied in the header. If the two hashes do not match, the object is rejected and an HTTP-400 Unmatched Content MD5 error is returned with the message: "The computed MD5 of the request body (ACTUAL_MD5) does not match the Content-MD5 header (HEADER_MD5)"

Etag

Declaration
[HttpConverter(TargetEnum.Header, "etag")]
public string Etag { get; set; }
Property Value
Type Description
string

For optimistic concurrency control. See ETags for Optimistic Concurrency Control.

InputStream

Declaration
[HttpConverter(TargetEnum.Body)]
public Stream InputStream { get; set; }
Property Value
Type Description
Stream

The returned System.IO.Stream instance. Caller must always close the stream to avoid holding resources.

LastModified

Declaration
[HttpConverter(TargetEnum.Header, "last-modified")]
public DateTime? LastModified { get; set; }
Property Value
Type Description
DateTime?

The artifact modification time, as described in RFC 2616, section 14.29.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique Oracle assigned identifier for the request. If you need to contact Oracle about a particular request, then provide the request ID.

Implements

IOciResponse
In this article
Back to top