-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
SynapsePrivateLinkResourceData.cs
39 lines (33 loc) · 1.47 KB
/
SynapsePrivateLinkResourceData.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using Azure.Core;
using Azure.ResourceManager.Models;
using Azure.ResourceManager.Synapse.Models;
namespace Azure.ResourceManager.Synapse
{
/// <summary>
/// A class representing the SynapsePrivateLinkResource data model.
/// A private link resource
/// </summary>
public partial class SynapsePrivateLinkResourceData : ResourceData
{
/// <summary> Initializes a new instance of SynapsePrivateLinkResourceData. </summary>
public SynapsePrivateLinkResourceData()
{
}
/// <summary> Initializes a new instance of SynapsePrivateLinkResourceData. </summary>
/// <param name="id"> The id. </param>
/// <param name="name"> The name. </param>
/// <param name="resourceType"> The resourceType. </param>
/// <param name="systemData"> The systemData. </param>
/// <param name="properties"> The private link resource properties. </param>
internal SynapsePrivateLinkResourceData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, SynapsePrivateLinkResourceProperties properties) : base(id, name, resourceType, systemData)
{
Properties = properties;
}
/// <summary> The private link resource properties. </summary>
public SynapsePrivateLinkResourceProperties Properties { get; }
}
}