-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
TableData.cs
45 lines (39 loc) · 1.82 KB
/
TableData.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System.Collections.Generic;
using Azure.Core;
using Azure.ResourceManager.Models;
using Azure.ResourceManager.Storage.Models;
namespace Azure.ResourceManager.Storage
{
/// <summary>
/// A class representing the Table data model.
/// Properties of the table, including Id, resource name, resource type.
/// </summary>
public partial class TableData : ResourceData
{
/// <summary> Initializes a new instance of TableData. </summary>
public TableData()
{
SignedIdentifiers = new ChangeTrackingList<StorageTableSignedIdentifier>();
}
/// <summary> Initializes a new instance of TableData. </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="tableName"> Table name under the specified account. </param>
/// <param name="signedIdentifiers"> List of stored access policies specified on the table. </param>
internal TableData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, string tableName, IList<StorageTableSignedIdentifier> signedIdentifiers) : base(id, name, resourceType, systemData)
{
TableName = tableName;
SignedIdentifiers = signedIdentifiers;
}
/// <summary> Table name under the specified account. </summary>
public string TableName { get; }
/// <summary> List of stored access policies specified on the table. </summary>
public IList<StorageTableSignedIdentifier> SignedIdentifiers { get; }
}
}