-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
MySqlFlexibleServerBackupProperties.cs
38 lines (32 loc) · 1.69 KB
/
MySqlFlexibleServerBackupProperties.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
namespace Azure.ResourceManager.MySql.FlexibleServers.Models
{
/// <summary> Storage Profile properties of a server. </summary>
public partial class MySqlFlexibleServerBackupProperties
{
/// <summary> Initializes a new instance of MySqlFlexibleServerBackupProperties. </summary>
public MySqlFlexibleServerBackupProperties()
{
}
/// <summary> Initializes a new instance of MySqlFlexibleServerBackupProperties. </summary>
/// <param name="backupRetentionDays"> Backup retention days for the server. </param>
/// <param name="geoRedundantBackup"> Whether or not geo redundant backup is enabled. </param>
/// <param name="earliestRestoreOn"> Earliest restore point creation time (ISO8601 format). </param>
internal MySqlFlexibleServerBackupProperties(int? backupRetentionDays, MySqlFlexibleServerEnableStatusEnum? geoRedundantBackup, DateTimeOffset? earliestRestoreOn)
{
BackupRetentionDays = backupRetentionDays;
GeoRedundantBackup = geoRedundantBackup;
EarliestRestoreOn = earliestRestoreOn;
}
/// <summary> Backup retention days for the server. </summary>
public int? BackupRetentionDays { get; set; }
/// <summary> Whether or not geo redundant backup is enabled. </summary>
public MySqlFlexibleServerEnableStatusEnum? GeoRedundantBackup { get; set; }
/// <summary> Earliest restore point creation time (ISO8601 format). </summary>
public DateTimeOffset? EarliestRestoreOn { get; }
}
}