-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
AppServiceSkuCapability.cs
36 lines (31 loc) · 1.26 KB
/
AppServiceSkuCapability.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
namespace Azure.ResourceManager.AppService.Models
{
/// <summary> Describes the capabilities/features allowed for a specific SKU. </summary>
public partial class AppServiceSkuCapability
{
/// <summary> Initializes a new instance of AppServiceSkuCapability. </summary>
public AppServiceSkuCapability()
{
}
/// <summary> Initializes a new instance of AppServiceSkuCapability. </summary>
/// <param name="name"> Name of the SKU capability. </param>
/// <param name="value"> Value of the SKU capability. </param>
/// <param name="reason"> Reason of the SKU capability. </param>
internal AppServiceSkuCapability(string name, string value, string reason)
{
Name = name;
Value = value;
Reason = reason;
}
/// <summary> Name of the SKU capability. </summary>
public string Name { get; set; }
/// <summary> Value of the SKU capability. </summary>
public string Value { get; set; }
/// <summary> Reason of the SKU capability. </summary>
public string Reason { get; set; }
}
}