Show / Hide Table of Contents

Class UpdateBackupScheduleDetails

Defines the backup schedule details for update operation.

Inheritance
object
UpdateBackupScheduleDetails
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 UpdateBackupScheduleDetails

Properties

BucketName

Declaration
[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

CompartmentId

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

The OCID of the compartment being referenced.

FrequencyBackupScheduled

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

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

IsMetadataOnly

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

Parameter to allow users to create backup without trails

NamespaceName

Declaration
[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

TimeBackupScheduled

Declaration
[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.

In this article
Back to top