Show / Hide Table of Contents

Class DataFileSummary

Properties related to the file.

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

Properties

ApmType

Declaration
[Required(ErrorMessage = "ApmType is required.")]
[JsonProperty(PropertyName = "apmType")]
public string ApmType { get; set; }
Property Value
Type Description
string

The type of the data file, indicating its intended use Example: source_map

Remarks

Required

Md5

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

Base64-encoded MD5 hash of the object data.

Metadata

Declaration
[JsonProperty(PropertyName = "metadata")]
public Dictionary<string, string> Metadata { get; set; }
Property Value
Type Description
Dictionary<string, string>

Metadata properties related to the data file.

Name

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

The name to use as identifier for the data file.

Remarks

Required

SizeInBytes

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

Size of the object in bytes.

TimeLastModified

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

The last time the object was modified, as described in RFC 2616. Expressed in RFC 3339 timestamp format. Example: 2020-02-19T22:47:12.613Z

In this article
Back to top