| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | namespace Azure.Analytics.Synapse.Artifacts.Models |
| | | 9 | | { |
| | | 10 | | /// <summary> Azure Synapse nested resource, which belongs to a workspace. </summary> |
| | | 11 | | public partial class SubResource |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of SubResource. </summary> |
| | 0 | 14 | | public SubResource() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of SubResource. </summary> |
| | | 19 | | /// <param name="id"> The resource identifier. </param> |
| | | 20 | | /// <param name="name"> The resource name. </param> |
| | | 21 | | /// <param name="type"> The resource type. </param> |
| | | 22 | | /// <param name="etag"> Etag identifies change in the resource. </param> |
| | 32 | 23 | | internal SubResource(string id, string name, string type, string etag) |
| | | 24 | | { |
| | 32 | 25 | | Id = id; |
| | 32 | 26 | | Name = name; |
| | 32 | 27 | | Type = type; |
| | 32 | 28 | | Etag = etag; |
| | 32 | 29 | | } |
| | | 30 | | |
| | | 31 | | /// <summary> The resource identifier. </summary> |
| | 32 | 32 | | public string Id { get; } |
| | | 33 | | /// <summary> The resource name. </summary> |
| | 48 | 34 | | public string Name { get; } |
| | | 35 | | /// <summary> The resource type. </summary> |
| | 0 | 36 | | public string Type { get; } |
| | | 37 | | /// <summary> Etag identifies change in the resource. </summary> |
| | 0 | 38 | | public string Etag { get; } |
| | | 39 | | } |
| | | 40 | | } |