Show / Hide Table of Contents

Class SoftwarePackageFile

A file associated with a package

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

Properties

Checksum

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

checksum of the file

ChecksumType

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

type of the checksum

Path

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

file path

SizeInBytes

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

size of the file in bytes

TimeModified

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

The date and time of the last modification to this file, as described in RFC 3339, section 14.29.

Type

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

type of the file

In this article
Back to top