Class BackupSchedule
Defines the schedule of the deployment backup.
Inherited Members
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class BackupSchedule
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(ResponseEnumConverter))]
public BackupSchedule.FrequencyBackupScheduledEnum? FrequencyBackupScheduled { get; set; }
Property Value
Type | Description |
---|---|
BackupSchedule.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 |
Remarks
Required