Show / Hide Table of Contents

Class GetAwrHubObjectResponse

Inheritance
object
OciResponse
GetAwrHubObjectResponse
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.OpsiService.Responses
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class GetAwrHubObjectResponse : OciResponse, IOciResponse

Properties

ArchivalState

Declaration
[HttpConverter(TargetEnum.Header, "archival-state")]
public GetAwrHubObjectResponse.ArchivalStateEnum? ArchivalState { get; set; }
Property Value
Type Description
GetAwrHubObjectResponse.ArchivalStateEnum?

Archival state of an Awr Hub object. This field is set only for Awr Hub objects in Archive tier.

CacheControl

Declaration
[HttpConverter(TargetEnum.Header, "cache-control")]
public string CacheControl { get; set; }
Property Value
Type Description
string

Cache-Control header.

ContentDisposition

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

Content-Disposition header.

ContentEncoding

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

Content-Encoding header.

ContentLanguage

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

Content-Language header.

ContentLength

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

The Awr Hub object size in bytes.

ContentMd5

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

Content-MD5 header.

ContentRange

Declaration
[HttpConverter(TargetEnum.Header, "content-range")]
public Range ContentRange { get; set; }
Property Value
Type Description
Range

Content-Range header.

ContentType

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

Content-Type header.

Etag

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

For optimistic concurrency control. See if-match.

Expires

Declaration
[HttpConverter(TargetEnum.Header, "expires")]
public DateTime? Expires { get; set; }
Property Value
Type Description
DateTime?

The date and time after which the Awr Hub object is no longer cached by a browser, proxy, or other caching entity.

InputStream

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

The returned System.IO.Stream instance, or null if {@link #isNotModified()} is true. Caller must always close the stream to avoid holding resources.

IsNotModified

Declaration
public bool IsNotModified { get; set; }
Property Value
Type Description
bool

Flag to indicate whether or not the object was modified. If this is true, the getter for the object itself will return null. Callers should check this if they specified one of the request params that might result in a conditional response (like 'if-match'/'if-none-match').

LastModified

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

The Awr Hub object modification time.

OpcClientRequestId

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

Echoes back the value passed in the opc-client-request-id header, for use by clients when debugging.

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 Awr Hub object.

OpcMultipartMd5

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

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.

StorageTier

Declaration
[HttpConverter(TargetEnum.Header, "storage-tier")]
public GetAwrHubObjectResponse.StorageTierEnum? StorageTier { get; set; }
Property Value
Type Description
GetAwrHubObjectResponse.StorageTierEnum?

The storage tier that the Awr Hub object is stored in.

TimeOfArchival

Declaration
[HttpConverter(TargetEnum.Header, "time-of-archival")]
public DateTime? TimeOfArchival { get; set; }
Property Value
Type Description
DateTime?

Time that the Awr Hub object is returned to the archived state.

VersionId

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

VersionId of the requested Awr Hub object.

Implements

IOciResponse
In this article
Back to top