Show / Hide Table of Contents

Class ObjectSummary

Summary resource object.

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

Properties

ArchivalState

Declaration
[JsonProperty(PropertyName = "archivalState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ArchivalState? ArchivalState { get; set; }
Property Value
Type Description
ArchivalState?

Archival state of an object for those in the archival tier.

Etag

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

For optimistic concurrency control. See if-match.

Md5

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

Base64-encoded MD5 hash of the Awr Hub object data.

Name

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

The name of the Awr Hub object.

Size

Declaration
[JsonProperty(PropertyName = "size")]
public long? Size { get; set; }
Property Value
Type Description
long?

Size of the Awr Hub object in bytes.

StorageTier

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

The object's storage tier.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time at which the resource was first created. An RFC3339 formatted datetime string

TimeModified

Declaration
[JsonProperty(PropertyName = "timeModified")]
public DateTime? TimeModified { get; set; }
Property Value
Type Description
DateTime?

The date and time the Awr Hub object was modified

In this article
Back to top