Class HeadAwrHubObjectResponse
Inheritance
HeadAwrHubObjectResponse
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class HeadAwrHubObjectResponse : OciResponse, IOciResponse
Properties
ArchivalState
Declaration
[HttpConverter(TargetEnum.Header, "archival-state")]
public HeadAwrHubObjectResponse.ArchivalStateEnum? ArchivalState { get; set; }
Property Value
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.
|
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 .
|
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.
|
Declaration
[HttpConverter(TargetEnum.Header, "opc-meta-")]
public Dictionary<string, string> OpcMeta { get; set; }
Property Value
OpcMultipartMd5
Declaration
[HttpConverter(TargetEnum.Header, "opc-multipart-md5")]
public string OpcMultipartMd5 { get; set; }
Property Value
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 HeadAwrHubObjectResponse.StorageTierEnum? StorageTier { get; set; }
Property Value
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