Show / Hide Table of Contents

Class DownloadOneoffPatch

Data to download one-off patch.

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

Properties

AccessUri

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

URI to download one-off patch.

Remarks

Required

TimeCreated

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

The date and time one-off patch URI was created.

Remarks

Required

TimeExpires

Declaration
[Required(ErrorMessage = "TimeExpires is required.")]
[JsonProperty(PropertyName = "timeExpires")]
public DateTime? TimeExpires { get; set; }
Property Value
Type Description
DateTime?

The date and time until which the one-off patch URI will be available for download.

Remarks

Required

In this article
Back to top