Class BackupSetting
Back up setting details of the model.
Inherited Members
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