Show / Hide Table of Contents

Class BackupSetting

Back up setting details of the model.

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

Properties

BackupRegion

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

OCI backup region for the model.

Remarks

Required

CustomerNotificationType

Declaration
[JsonProperty(PropertyName = "customerNotificationType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ModelSettingCustomerNotificationType? CustomerNotificationType { get; set; }
Property Value
Type Description
ModelSettingCustomerNotificationType?

Customer notification on backup success/failure events.

IsBackupEnabled

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

Boolean flag representing whether backup needs to be enabled/disabled for the model.

Remarks

Required

In this article
Back to top