Show / Hide Table of Contents

Class GetRunLogResponse

Inheritance
object
OciResponse
GetRunLogResponse
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.DataflowService.Responses
Assembly: OCI.DotNetSDK.Dataflow.dll
Syntax
public class GetRunLogResponse : OciResponse, IOciResponse

Properties

ContentEncoding

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

Indicates the encoding of the data, as described in RFC 2616, section 14.11.

ContentLength

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

Indicates the size of the data as described in RFC 2616, section 14.13.

ContentType

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

Specifies the media type of the underlying data as described in RFC 2616, section 14.17.

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.

OpcMeta

Declaration
[HttpConverter(TargetEnum.Header, "opc-meta-")]
public Dictionary<string, string> OpcMeta { get; set; }
Property Value
Type Description
Dictionary<string, string>

The user-defined metadata for the log.

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, please provide the request ID.

Implements

IOciResponse
In this article
Back to top