Show / Hide Table of Contents

Class CreateBackupScheduleDetails

Defines the backup schedule details for create operation.

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

Properties

BucketName

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

Name of the bucket where the object is to be uploaded in the object storage

Remarks

Required

CompartmentId

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

The OCID of the compartment being referenced.

Remarks

Required

FrequencyBackupScheduled

Declaration
[Required(ErrorMessage = "FrequencyBackupScheduled is required.")]
[JsonProperty(PropertyName = "frequencyBackupScheduled")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateBackupScheduleDetails.FrequencyBackupScheduledEnum? FrequencyBackupScheduled { get; set; }
Property Value
Type Description
CreateBackupScheduleDetails.FrequencyBackupScheduledEnum?

The frequency of the deployment backup schedule. Frequency can be DAILY, WEEKLY or MONTHLY.

Remarks

Required

IsMetadataOnly

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

Parameter to allow users to create backup without trails

Remarks

Required

NamespaceName

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

Name of namespace that serves as a container for all of your buckets

Remarks

Required

TimeBackupScheduled

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

The start timestamp for the deployment backup schedule. The format is defined by RFC3339, such as 2024-10-25T18:19:29.600Z.

Remarks

Required

In this article
Back to top