-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathBackupResourceEncryptionConfig.cs
46 lines (40 loc) · 2.08 KB
/
BackupResourceEncryptionConfig.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
39
40
41
42
43
44
45
46
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
namespace Azure.ResourceManager.RecoveryServicesBackup.Models
{
/// <summary> The BackupResourceEncryptionConfig. </summary>
public partial class BackupResourceEncryptionConfig
{
/// <summary> Initializes a new instance of <see cref="BackupResourceEncryptionConfig"/>. </summary>
public BackupResourceEncryptionConfig()
{
}
/// <summary> Initializes a new instance of <see cref="BackupResourceEncryptionConfig"/>. </summary>
/// <param name="encryptionAtRestType"> Encryption At Rest Type. </param>
/// <param name="keyUri"> Key Vault Key URI. </param>
/// <param name="subscriptionId"> Key Vault Subscription Id. </param>
/// <param name="lastUpdateStatus"></param>
/// <param name="infrastructureEncryptionState"></param>
internal BackupResourceEncryptionConfig(BackupEncryptionAtRestType? encryptionAtRestType, Uri keyUri, string subscriptionId, LastUpdateStatus? lastUpdateStatus, InfrastructureEncryptionState? infrastructureEncryptionState)
{
EncryptionAtRestType = encryptionAtRestType;
KeyUri = keyUri;
SubscriptionId = subscriptionId;
LastUpdateStatus = lastUpdateStatus;
InfrastructureEncryptionState = infrastructureEncryptionState;
}
/// <summary> Encryption At Rest Type. </summary>
public BackupEncryptionAtRestType? EncryptionAtRestType { get; set; }
/// <summary> Key Vault Key URI. </summary>
public Uri KeyUri { get; set; }
/// <summary> Key Vault Subscription Id. </summary>
public string SubscriptionId { get; set; }
/// <summary> Gets or sets the last update status. </summary>
public LastUpdateStatus? LastUpdateStatus { get; set; }
/// <summary> Gets or sets the infrastructure encryption state. </summary>
public InfrastructureEncryptionState? InfrastructureEncryptionState { get; set; }
}
}