-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
AnalysisExistingSku.cs
34 lines (28 loc) · 1.12 KB
/
AnalysisExistingSku.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using Azure.Core;
namespace Azure.ResourceManager.Analysis.Models
{
/// <summary> An object that represents SKU details for existing resources. </summary>
public partial class AnalysisExistingSku
{
/// <summary> Initializes a new instance of AnalysisExistingSku. </summary>
internal AnalysisExistingSku()
{
}
/// <summary> Initializes a new instance of AnalysisExistingSku. </summary>
/// <param name="sku"> The SKU in SKU details for existing resources. </param>
/// <param name="resourceType"> The resource type. </param>
internal AnalysisExistingSku(AnalysisResourceSku sku, ResourceType? resourceType)
{
Sku = sku;
ResourceType = resourceType;
}
/// <summary> The SKU in SKU details for existing resources. </summary>
public AnalysisResourceSku Sku { get; }
/// <summary> The resource type. </summary>
public ResourceType? ResourceType { get; }
}
}