-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
PlannedFailoverModelCustomProperties.cs
32 lines (27 loc) · 1.5 KB
/
PlannedFailoverModelCustomProperties.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
namespace Azure.ResourceManager.RecoveryServicesDataReplication.Models
{
/// <summary>
/// Planned failover model custom properties.
/// Please note <see cref="PlannedFailoverModelCustomProperties"/> is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes.
/// The available derived classes include <see cref="HyperVToAzStackHciPlannedFailoverModelCustomProperties"/>, <see cref="GeneralPlannedFailoverModelCustomProperties"/> and <see cref="VMwareToAzStackHciPlannedFailoverModelCustomProperties"/>.
/// </summary>
public abstract partial class PlannedFailoverModelCustomProperties
{
/// <summary> Initializes a new instance of <see cref="PlannedFailoverModelCustomProperties"/>. </summary>
protected PlannedFailoverModelCustomProperties()
{
}
/// <summary> Initializes a new instance of <see cref="PlannedFailoverModelCustomProperties"/>. </summary>
/// <param name="instanceType"> Gets or sets the instance type. </param>
internal PlannedFailoverModelCustomProperties(string instanceType)
{
InstanceType = instanceType;
}
/// <summary> Gets or sets the instance type. </summary>
internal string InstanceType { get; set; }
}
}